~ubuntu-branches/ubuntu/saucy/libgweather/saucy

« back to all changes in this revision

Viewing changes to debian/patches/debian-changes-2.30.3-0ubuntu2

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2010-10-07 19:22:53 UTC
  • Revision ID: james.westby@ubuntu.com-20101007192253-odpnz650c646scy6
Tags: 2.30.3-0ubuntu2
Fix build failure with DSO link changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Description: Upstream changes introduced in version 2.30.3-0ubuntu2
 
2
 This patch has been created by dpkg-source during the package build.
 
3
 Here's the last changelog entry, hopefully it gives details on why
 
4
 those changes were made:
 
5
 .
 
6
 libgweather (2.30.3-0ubuntu2) natty; urgency=low
 
7
 .
 
8
   * Fix build failure with DSO link changes.
 
9
 .
 
10
 The person named in the Author field signed this changelog entry.
 
11
Author: Matthias Klose <doko@ubuntu.com>
 
12
 
 
13
---
 
14
The information above should follow the Patch Tagging Guidelines, please
 
15
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
 
16
are templates for supplementary fields that you might want to add:
 
17
 
 
18
Origin: <vendor|upstream|other>, <url of original patch>
 
19
Bug: <url in upstream bugtracker>
 
20
Bug-Debian: http://bugs.debian.org/<bugnumber>
 
21
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
 
22
Forwarded: <no|not-needed|url proving that it has been forwarded>
 
23
Reviewed-By: <name and email of someone who approved the patch>
 
24
Last-Update: <YYYY-MM-DD>
 
25
 
 
26
--- libgweather-2.30.3.orig/ltmain.sh
 
27
+++ libgweather-2.30.3/ltmain.sh
 
28
@@ -65,7 +65,7 @@
 
29
 #       compiler:              $LTCC
 
30
 #       compiler flags:                $LTCFLAGS
 
31
 #       linker:                $LD (gnu? $with_gnu_ld)
 
32
-#       $progname:             (GNU libtool) 2.2.6b
 
33
+#       $progname:             (GNU libtool) 2.2.6b Debian-2.2.6b-2ubuntu1
 
34
 #       automake:              $automake_version
 
35
 #       autoconf:              $autoconf_version
 
36
 #
 
37
@@ -73,7 +73,7 @@
 
38
 
 
39
 PROGRAM=ltmain.sh
 
40
 PACKAGE=libtool
 
41
-VERSION=2.2.6b
 
42
+VERSION="2.2.6b Debian-2.2.6b-2ubuntu1"
 
43
 TIMESTAMP=""
 
44
 package_revision=1.3017
 
45
 
 
46
@@ -4716,11 +4716,6 @@ func_mode_link ()
 
47
        arg=$func_stripname_result
 
48
        ;;
 
49
 
 
50
-      -Wl,--as-needed)
 
51
-       deplibs="$deplibs $arg"
 
52
-       continue
 
53
-       ;;
 
54
-      
 
55
       -Wl,*)
 
56
        func_stripname '-Wl,' '' "$arg"
 
57
        args=$func_stripname_result
 
58
@@ -5038,7 +5033,10 @@ func_mode_link ()
 
59
        case $pass in
 
60
        dlopen) libs="$dlfiles" ;;
 
61
        dlpreopen) libs="$dlprefiles" ;;
 
62
-       link) libs="$deplibs %DEPLIBS% $dependency_libs" ;;
 
63
+       link)
 
64
+         libs="$deplibs %DEPLIBS%"
 
65
+         test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs"
 
66
+         ;;
 
67
        esac
 
68
       fi
 
69
       if test "$linkmode,$pass" = "lib,dlpreopen"; then
 
70
@@ -5072,15 +5070,6 @@ func_mode_link ()
 
71
        lib=
 
72
        found=no
 
73
        case $deplib in
 
74
-       -Wl,--as-needed)
 
75
-         if test "$linkmode,$pass" = "prog,link"; then
 
76
-           compile_deplibs="$deplib $compile_deplibs"
 
77
-           finalize_deplibs="$deplib $finalize_deplibs"
 
78
-         else
 
79
-           deplibs="$deplib $deplibs"
 
80
-         fi
 
81
-         continue
 
82
-         ;;
 
83
        -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads)
 
84
          if test "$linkmode,$pass" = "prog,link"; then
 
85
            compile_deplibs="$deplib $compile_deplibs"
 
86
@@ -5358,19 +5347,19 @@ func_mode_link ()
 
87
            # It is a libtool convenience library, so add in its objects.
 
88
            convenience="$convenience $ladir/$objdir/$old_library"
 
89
            old_convenience="$old_convenience $ladir/$objdir/$old_library"
 
90
+           tmp_libs=
 
91
+           for deplib in $dependency_libs; do
 
92
+             deplibs="$deplib $deplibs"
 
93
+             if $opt_duplicate_deps ; then
 
94
+               case "$tmp_libs " in
 
95
+               *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
 
96
+               esac
 
97
+             fi
 
98
+             tmp_libs="$tmp_libs $deplib"
 
99
+           done
 
100
          elif test "$linkmode" != prog && test "$linkmode" != lib; then
 
101
            func_fatal_error "\`$lib' is not a convenience library"
 
102
          fi
 
103
-         tmp_libs=
 
104
-         for deplib in $dependency_libs; do
 
105
-           deplibs="$deplib $deplibs"
 
106
-           if $opt_duplicate_deps ; then
 
107
-             case "$tmp_libs " in
 
108
-             *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
 
109
-             esac
 
110
-           fi
 
111
-           tmp_libs="$tmp_libs $deplib"
 
112
-         done
 
113
          continue
 
114
        fi # $pass = conv
 
115
 
 
116
@@ -5907,6 +5896,7 @@ func_mode_link ()
 
117
          if test "$link_all_deplibs" != no; then
 
118
            # Add the search paths of all dependency libraries
 
119
            for deplib in $dependency_libs; do
 
120
+             path=
 
121
              case $deplib in
 
122
              -L*) path="$deplib" ;;
 
123
              *.la)
 
124
@@ -6220,6 +6210,9 @@ func_mode_link ()
 
125
            revision="$number_minor"
 
126
            lt_irix_increment=no
 
127
            ;;
 
128
+         *)
 
129
+           func_fatal_configuration "$modename: unknown library version type \`$version_type'"
 
130
+           ;;
 
131
          esac
 
132
          ;;
 
133
        no)
 
134
--- libgweather-2.30.3.orig/aclocal.m4
 
135
+++ libgweather-2.30.3/aclocal.m4
 
136
@@ -19,1257 +19,892 @@ You have another version of autoconf.  I
 
137
 If you have problems, you may need to regenerate the build system entirely.
 
138
 To do so, use the procedure documented by the package, typically `autoreconf'.])])
 
139
 
 
140
-# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008  Free Software Foundation, Inc.
 
141
-#
 
142
-# This file is free software; the Free Software Foundation
 
143
-# gives unlimited permission to copy and/or distribute it,
 
144
-# with or without modifications, as long as this notice is preserved.
 
145
+dnl AM_GCONF_SOURCE_2
 
146
+dnl Defines GCONF_SCHEMA_CONFIG_SOURCE which is where you should install schemas
 
147
+dnl  (i.e. pass to gconftool-2
 
148
+dnl Defines GCONF_SCHEMA_FILE_DIR which is a filesystem directory where
 
149
+dnl  you should install foo.schemas files
 
150
+dnl
 
151
 
 
152
-# AM_AUTOMAKE_VERSION(VERSION)
 
153
-# ----------------------------
 
154
-# Automake X.Y traces this macro to ensure aclocal.m4 has been
 
155
-# generated from the m4 files accompanying Automake X.Y.
 
156
-# (This private macro should not be called outside this file.)
 
157
-AC_DEFUN([AM_AUTOMAKE_VERSION],
 
158
-[am__api_version='1.11'
 
159
-dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
 
160
-dnl require some minimum version.  Point them to the right macro.
 
161
-m4_if([$1], [1.11.1], [],
 
162
-      [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
 
163
-])
 
164
+AC_DEFUN([AM_GCONF_SOURCE_2],
 
165
+[
 
166
+  if test "x$GCONF_SCHEMA_INSTALL_SOURCE" = "x"; then
 
167
+    GCONF_SCHEMA_CONFIG_SOURCE=`gconftool-2 --get-default-source`
 
168
+  else
 
169
+    GCONF_SCHEMA_CONFIG_SOURCE=$GCONF_SCHEMA_INSTALL_SOURCE
 
170
+  fi
 
171
 
 
172
-# _AM_AUTOCONF_VERSION(VERSION)
 
173
-# -----------------------------
 
174
-# aclocal traces this macro to find the Autoconf version.
 
175
-# This is a private macro too.  Using m4_define simplifies
 
176
-# the logic in aclocal, which can simply ignore this definition.
 
177
-m4_define([_AM_AUTOCONF_VERSION], [])
 
178
+  AC_ARG_WITH([gconf-source],
 
179
+             AC_HELP_STRING([--with-gconf-source=sourceaddress],
 
180
+                            [Config database for installing schema files.]),
 
181
+             [GCONF_SCHEMA_CONFIG_SOURCE="$withval"],)
 
182
 
 
183
-# AM_SET_CURRENT_AUTOMAKE_VERSION
 
184
-# -------------------------------
 
185
-# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
 
186
-# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
 
187
-AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
 
188
-[AM_AUTOMAKE_VERSION([1.11.1])dnl
 
189
-m4_ifndef([AC_AUTOCONF_VERSION],
 
190
-  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
 
191
-_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
 
192
+  AC_SUBST(GCONF_SCHEMA_CONFIG_SOURCE)
 
193
+  AC_MSG_RESULT([Using config source $GCONF_SCHEMA_CONFIG_SOURCE for schema installation])
 
194
 
 
195
-# AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
 
196
+  if test "x$GCONF_SCHEMA_FILE_DIR" = "x"; then
 
197
+    GCONF_SCHEMA_FILE_DIR='$(sysconfdir)/gconf/schemas'
 
198
+  fi
 
199
 
 
200
-# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
 
201
-#
 
202
-# This file is free software; the Free Software Foundation
 
203
-# gives unlimited permission to copy and/or distribute it,
 
204
-# with or without modifications, as long as this notice is preserved.
 
205
+  AC_ARG_WITH([gconf-schema-file-dir],
 
206
+             AC_HELP_STRING([--with-gconf-schema-file-dir=dir],
 
207
+                            [Directory for installing schema files.]),
 
208
+             [GCONF_SCHEMA_FILE_DIR="$withval"],)
 
209
 
 
210
-# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
 
211
-# $ac_aux_dir to `$srcdir/foo'.  In other projects, it is set to
 
212
-# `$srcdir', `$srcdir/..', or `$srcdir/../..'.
 
213
-#
 
214
-# Of course, Automake must honor this variable whenever it calls a
 
215
-# tool from the auxiliary directory.  The problem is that $srcdir (and
 
216
-# therefore $ac_aux_dir as well) can be either absolute or relative,
 
217
-# depending on how configure is run.  This is pretty annoying, since
 
218
-# it makes $ac_aux_dir quite unusable in subdirectories: in the top
 
219
-# source directory, any form will work fine, but in subdirectories a
 
220
-# relative path needs to be adjusted first.
 
221
-#
 
222
-# $ac_aux_dir/missing
 
223
-#    fails when called from a subdirectory if $ac_aux_dir is relative
 
224
-# $top_srcdir/$ac_aux_dir/missing
 
225
-#    fails if $ac_aux_dir is absolute,
 
226
-#    fails when called from a subdirectory in a VPATH build with
 
227
-#          a relative $ac_aux_dir
 
228
-#
 
229
-# The reason of the latter failure is that $top_srcdir and $ac_aux_dir
 
230
-# are both prefixed by $srcdir.  In an in-source build this is usually
 
231
-# harmless because $srcdir is `.', but things will broke when you
 
232
-# start a VPATH build or use an absolute $srcdir.
 
233
-#
 
234
-# So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
 
235
-# iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
 
236
-#   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
 
237
-# and then we would define $MISSING as
 
238
-#   MISSING="\${SHELL} $am_aux_dir/missing"
 
239
-# This will work as long as MISSING is not called from configure, because
 
240
-# unfortunately $(top_srcdir) has no meaning in configure.
 
241
-# However there are other variables, like CC, which are often used in
 
242
-# configure, and could therefore not use this "fixed" $ac_aux_dir.
 
243
-#
 
244
-# Another solution, used here, is to always expand $ac_aux_dir to an
 
245
-# absolute PATH.  The drawback is that using absolute paths prevent a
 
246
-# configured tree to be moved without reconfiguration.
 
247
+  AC_SUBST(GCONF_SCHEMA_FILE_DIR)
 
248
+  AC_MSG_RESULT([Using $GCONF_SCHEMA_FILE_DIR as install directory for schema files])
 
249
 
 
250
-AC_DEFUN([AM_AUX_DIR_EXPAND],
 
251
-[dnl Rely on autoconf to set up CDPATH properly.
 
252
-AC_PREREQ([2.50])dnl
 
253
-# expand $ac_aux_dir to an absolute path
 
254
-am_aux_dir=`cd $ac_aux_dir && pwd`
 
255
+  AC_ARG_ENABLE(schemas-install,
 
256
+       AC_HELP_STRING([--disable-schemas-install],
 
257
+                      [Disable the schemas installation]),
 
258
+     [case ${enableval} in
 
259
+       yes|no) ;;
 
260
+       *) AC_MSG_ERROR([bad value ${enableval} for --enable-schemas-install]) ;;
 
261
+      esac])
 
262
+  AM_CONDITIONAL([GCONF_SCHEMAS_INSTALL], [test "$enable_schemas_install" != no])
 
263
 ])
 
264
 
 
265
-# AM_CONDITIONAL                                            -*- Autoconf -*-
 
266
+# Configure paths for GLIB
 
267
+# Owen Taylor     1997-2001
 
268
 
 
269
-# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008
 
270
-# Free Software Foundation, Inc.
 
271
-#
 
272
-# This file is free software; the Free Software Foundation
 
273
-# gives unlimited permission to copy and/or distribute it,
 
274
-# with or without modifications, as long as this notice is preserved.
 
275
+dnl AM_PATH_GLIB_2_0([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, MODULES]]]])
 
276
+dnl Test for GLIB, and define GLIB_CFLAGS and GLIB_LIBS, if gmodule, gobject,
 
277
+dnl gthread, or gio is specified in MODULES, pass to pkg-config
 
278
+dnl
 
279
+AC_DEFUN([AM_PATH_GLIB_2_0],
 
280
+[dnl 
 
281
+dnl Get the cflags and libraries from pkg-config
 
282
+dnl
 
283
+AC_ARG_ENABLE(glibtest, [  --disable-glibtest      do not try to compile and run a test GLIB program],
 
284
+                   , enable_glibtest=yes)
 
285
 
 
286
-# serial 9
 
287
+  pkg_config_args=glib-2.0
 
288
+  for module in . $4
 
289
+  do
 
290
+      case "$module" in
 
291
+         gmodule) 
 
292
+             pkg_config_args="$pkg_config_args gmodule-2.0"
 
293
+         ;;
 
294
+         gmodule-no-export) 
 
295
+             pkg_config_args="$pkg_config_args gmodule-no-export-2.0"
 
296
+         ;;
 
297
+         gobject) 
 
298
+             pkg_config_args="$pkg_config_args gobject-2.0"
 
299
+         ;;
 
300
+         gthread) 
 
301
+             pkg_config_args="$pkg_config_args gthread-2.0"
 
302
+         ;;
 
303
+         gio*) 
 
304
+             pkg_config_args="$pkg_config_args $module-2.0"
 
305
+         ;;
 
306
+      esac
 
307
+  done
 
308
 
 
309
-# AM_CONDITIONAL(NAME, SHELL-CONDITION)
 
310
-# -------------------------------------
 
311
-# Define a conditional.
 
312
-AC_DEFUN([AM_CONDITIONAL],
 
313
-[AC_PREREQ(2.52)dnl
 
314
- ifelse([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
 
315
-       [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
 
316
-AC_SUBST([$1_TRUE])dnl
 
317
-AC_SUBST([$1_FALSE])dnl
 
318
-_AM_SUBST_NOTMAKE([$1_TRUE])dnl
 
319
-_AM_SUBST_NOTMAKE([$1_FALSE])dnl
 
320
-m4_define([_AM_COND_VALUE_$1], [$2])dnl
 
321
-if $2; then
 
322
-  $1_TRUE=
 
323
-  $1_FALSE='#'
 
324
-else
 
325
-  $1_TRUE='#'
 
326
-  $1_FALSE=
 
327
-fi
 
328
-AC_CONFIG_COMMANDS_PRE(
 
329
-[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
 
330
-  AC_MSG_ERROR([[conditional "$1" was never defined.
 
331
-Usually this means the macro was only invoked conditionally.]])
 
332
-fi])])
 
333
+  PKG_PROG_PKG_CONFIG([0.16])
 
334
 
 
335
-# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009
 
336
-# Free Software Foundation, Inc.
 
337
-#
 
338
-# This file is free software; the Free Software Foundation
 
339
-# gives unlimited permission to copy and/or distribute it,
 
340
-# with or without modifications, as long as this notice is preserved.
 
341
+  no_glib=""
 
342
 
 
343
-# serial 10
 
344
+  if test "x$PKG_CONFIG" = x ; then
 
345
+    no_glib=yes
 
346
+    PKG_CONFIG=no
 
347
+  fi
 
348
 
 
349
-# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
 
350
-# written in clear, in which case automake, when reading aclocal.m4,
 
351
-# will think it sees a *use*, and therefore will trigger all it's
 
352
-# C support machinery.  Also note that it means that autoscan, seeing
 
353
-# CC etc. in the Makefile, will ask for an AC_PROG_CC use...
 
354
+  min_glib_version=ifelse([$1], ,2.0.0,$1)
 
355
+  AC_MSG_CHECKING(for GLIB - version >= $min_glib_version)
 
356
 
 
357
+  if test x$PKG_CONFIG != xno ; then
 
358
+    ## don't try to run the test against uninstalled libtool libs
 
359
+    if $PKG_CONFIG --uninstalled $pkg_config_args; then
 
360
+         echo "Will use uninstalled version of GLib found in PKG_CONFIG_PATH"
 
361
+         enable_glibtest=no
 
362
+    fi
 
363
 
 
364
-# _AM_DEPENDENCIES(NAME)
 
365
-# ----------------------
 
366
-# See how the compiler implements dependency checking.
 
367
-# NAME is "CC", "CXX", "GCJ", or "OBJC".
 
368
-# We try a few techniques and use that to set a single cache variable.
 
369
-#
 
370
-# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
 
371
-# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular
 
372
-# dependency, and given that the user is not expected to run this macro,
 
373
-# just rely on AC_PROG_CC.
 
374
-AC_DEFUN([_AM_DEPENDENCIES],
 
375
-[AC_REQUIRE([AM_SET_DEPDIR])dnl
 
376
-AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
 
377
-AC_REQUIRE([AM_MAKE_INCLUDE])dnl
 
378
-AC_REQUIRE([AM_DEP_TRACK])dnl
 
379
+    if $PKG_CONFIG --atleast-version $min_glib_version $pkg_config_args; then
 
380
+         :
 
381
+    else
 
382
+         no_glib=yes
 
383
+    fi
 
384
+  fi
 
385
 
 
386
-ifelse([$1], CC,   [depcc="$CC"   am_compiler_list=],
 
387
-       [$1], CXX,  [depcc="$CXX"  am_compiler_list=],
 
388
-       [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
 
389
-       [$1], UPC,  [depcc="$UPC"  am_compiler_list=],
 
390
-       [$1], GCJ,  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],
 
391
-                   [depcc="$$1"   am_compiler_list=])
 
392
+  if test x"$no_glib" = x ; then
 
393
+    GLIB_GENMARSHAL=`$PKG_CONFIG --variable=glib_genmarshal glib-2.0`
 
394
+    GOBJECT_QUERY=`$PKG_CONFIG --variable=gobject_query glib-2.0`
 
395
+    GLIB_MKENUMS=`$PKG_CONFIG --variable=glib_mkenums glib-2.0`
 
396
 
 
397
-AC_CACHE_CHECK([dependency style of $depcc],
 
398
-               [am_cv_$1_dependencies_compiler_type],
 
399
-[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
 
400
-  # We make a subdir and do the tests there.  Otherwise we can end up
 
401
-  # making bogus files that we don't know about and never remove.  For
 
402
-  # instance it was reported that on HP-UX the gcc test will end up
 
403
-  # making a dummy file named `D' -- because `-MD' means `put the output
 
404
-  # in D'.
 
405
-  mkdir conftest.dir
 
406
-  # Copy depcomp to subdir because otherwise we won't find it if we're
 
407
-  # using a relative directory.
 
408
-  cp "$am_depcomp" conftest.dir
 
409
-  cd conftest.dir
 
410
-  # We will build objects and dependencies in a subdirectory because
 
411
-  # it helps to detect inapplicable dependency modes.  For instance
 
412
-  # both Tru64's cc and ICC support -MD to output dependencies as a
 
413
-  # side effect of compilation, but ICC will put the dependencies in
 
414
-  # the current directory while Tru64 will put them in the object
 
415
-  # directory.
 
416
-  mkdir sub
 
417
-
 
418
-  am_cv_$1_dependencies_compiler_type=none
 
419
-  if test "$am_compiler_list" = ""; then
 
420
-     am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
 
421
-  fi
 
422
-  am__universal=false
 
423
-  m4_case([$1], [CC],
 
424
-    [case " $depcc " in #(
 
425
-     *\ -arch\ *\ -arch\ *) am__universal=true ;;
 
426
-     esac],
 
427
-    [CXX],
 
428
-    [case " $depcc " in #(
 
429
-     *\ -arch\ *\ -arch\ *) am__universal=true ;;
 
430
-     esac])
 
431
-
 
432
-  for depmode in $am_compiler_list; do
 
433
-    # Setup a source with many dependencies, because some compilers
 
434
-    # like to wrap large dependency lists on column 80 (with \), and
 
435
-    # we should not choose a depcomp mode which is confused by this.
 
436
-    #
 
437
-    # We need to recreate these files for each test, as the compiler may
 
438
-    # overwrite some of them when testing with obscure command lines.
 
439
-    # This happens at least with the AIX C compiler.
 
440
-    : > sub/conftest.c
 
441
-    for i in 1 2 3 4 5 6; do
 
442
-      echo '#include "conftst'$i'.h"' >> sub/conftest.c
 
443
-      # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
 
444
-      # Solaris 8's {/usr,}/bin/sh.
 
445
-      touch sub/conftst$i.h
 
446
-    done
 
447
-    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
 
448
-
 
449
-    # We check with `-c' and `-o' for the sake of the "dashmstdout"
 
450
-    # mode.  It turns out that the SunPro C++ compiler does not properly
 
451
-    # handle `-M -o', and we need to detect this.  Also, some Intel
 
452
-    # versions had trouble with output in subdirs
 
453
-    am__obj=sub/conftest.${OBJEXT-o}
 
454
-    am__minus_obj="-o $am__obj"
 
455
-    case $depmode in
 
456
-    gcc)
 
457
-      # This depmode causes a compiler race in universal mode.
 
458
-      test "$am__universal" = false || continue
 
459
-      ;;
 
460
-    nosideeffect)
 
461
-      # after this tag, mechanisms are not by side-effect, so they'll
 
462
-      # only be used when explicitly requested
 
463
-      if test "x$enable_dependency_tracking" = xyes; then
 
464
-       continue
 
465
-      else
 
466
-       break
 
467
-      fi
 
468
-      ;;
 
469
-    msvisualcpp | msvcmsys)
 
470
-      # This compiler won't grok `-c -o', but also, the minuso test has
 
471
-      # not run yet.  These depmodes are late enough in the game, and
 
472
-      # so weak that their functioning should not be impacted.
 
473
-      am__obj=conftest.${OBJEXT-o}
 
474
-      am__minus_obj=
 
475
-      ;;
 
476
-    none) break ;;
 
477
-    esac
 
478
-    if depmode=$depmode \
 
479
-       source=sub/conftest.c object=$am__obj \
 
480
-       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
 
481
-       $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
 
482
-         >/dev/null 2>conftest.err &&
 
483
-       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
 
484
-       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
 
485
-       grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
 
486
-       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
 
487
-      # icc doesn't choke on unknown options, it will just issue warnings
 
488
-      # or remarks (even with -Werror).  So we grep stderr for any message
 
489
-      # that says an option was ignored or not supported.
 
490
-      # When given -MP, icc 7.0 and 7.1 complain thusly:
 
491
-      #   icc: Command line warning: ignoring option '-M'; no argument required
 
492
-      # The diagnosis changed in icc 8.0:
 
493
-      #   icc: Command line remark: option '-MP' not supported
 
494
-      if (grep 'ignoring option' conftest.err ||
 
495
-          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
 
496
-        am_cv_$1_dependencies_compiler_type=$depmode
 
497
-        break
 
498
-      fi
 
499
-    fi
 
500
-  done
 
501
-
 
502
-  cd ..
 
503
-  rm -rf conftest.dir
 
504
-else
 
505
-  am_cv_$1_dependencies_compiler_type=none
 
506
-fi
 
507
-])
 
508
-AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
 
509
-AM_CONDITIONAL([am__fastdep$1], [
 
510
-  test "x$enable_dependency_tracking" != xno \
 
511
-  && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
 
512
-])
 
513
-
 
514
-
 
515
-# AM_SET_DEPDIR
 
516
-# -------------
 
517
-# Choose a directory name for dependency files.
 
518
-# This macro is AC_REQUIREd in _AM_DEPENDENCIES
 
519
-AC_DEFUN([AM_SET_DEPDIR],
 
520
-[AC_REQUIRE([AM_SET_LEADING_DOT])dnl
 
521
-AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
 
522
-])
 
523
-
 
524
-
 
525
-# AM_DEP_TRACK
 
526
-# ------------
 
527
-AC_DEFUN([AM_DEP_TRACK],
 
528
-[AC_ARG_ENABLE(dependency-tracking,
 
529
-[  --disable-dependency-tracking  speeds up one-time build
 
530
-  --enable-dependency-tracking   do not reject slow dependency extractors])
 
531
-if test "x$enable_dependency_tracking" != xno; then
 
532
-  am_depcomp="$ac_aux_dir/depcomp"
 
533
-  AMDEPBACKSLASH='\'
 
534
-fi
 
535
-AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
 
536
-AC_SUBST([AMDEPBACKSLASH])dnl
 
537
-_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
 
538
-])
 
539
-
 
540
-# Generate code to set up dependency tracking.              -*- Autoconf -*-
 
541
-
 
542
-# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008
 
543
-# Free Software Foundation, Inc.
 
544
-#
 
545
-# This file is free software; the Free Software Foundation
 
546
-# gives unlimited permission to copy and/or distribute it,
 
547
-# with or without modifications, as long as this notice is preserved.
 
548
-
 
549
-#serial 5
 
550
-
 
551
-# _AM_OUTPUT_DEPENDENCY_COMMANDS
 
552
-# ------------------------------
 
553
-AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
 
554
-[{
 
555
-  # Autoconf 2.62 quotes --file arguments for eval, but not when files
 
556
-  # are listed without --file.  Let's play safe and only enable the eval
 
557
-  # if we detect the quoting.
 
558
-  case $CONFIG_FILES in
 
559
-  *\'*) eval set x "$CONFIG_FILES" ;;
 
560
-  *)   set x $CONFIG_FILES ;;
 
561
-  esac
 
562
-  shift
 
563
-  for mf
 
564
-  do
 
565
-    # Strip MF so we end up with the name of the file.
 
566
-    mf=`echo "$mf" | sed -e 's/:.*$//'`
 
567
-    # Check whether this is an Automake generated Makefile or not.
 
568
-    # We used to match only the files named `Makefile.in', but
 
569
-    # some people rename them; so instead we look at the file content.
 
570
-    # Grep'ing the first line is not enough: some people post-process
 
571
-    # each Makefile.in and add a new line on top of each file to say so.
 
572
-    # Grep'ing the whole file is not good either: AIX grep has a line
 
573
-    # limit of 2048, but all sed's we know have understand at least 4000.
 
574
-    if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
 
575
-      dirpart=`AS_DIRNAME("$mf")`
 
576
-    else
 
577
-      continue
 
578
-    fi
 
579
-    # Extract the definition of DEPDIR, am__include, and am__quote
 
580
-    # from the Makefile without running `make'.
 
581
-    DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
 
582
-    test -z "$DEPDIR" && continue
 
583
-    am__include=`sed -n 's/^am__include = //p' < "$mf"`
 
584
-    test -z "am__include" && continue
 
585
-    am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
 
586
-    # When using ansi2knr, U may be empty or an underscore; expand it
 
587
-    U=`sed -n 's/^U = //p' < "$mf"`
 
588
-    # Find all dependency output files, they are included files with
 
589
-    # $(DEPDIR) in their names.  We invoke sed twice because it is the
 
590
-    # simplest approach to changing $(DEPDIR) to its actual value in the
 
591
-    # expansion.
 
592
-    for file in `sed -n "
 
593
-      s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
 
594
-        sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
 
595
-      # Make sure the directory exists.
 
596
-      test -f "$dirpart/$file" && continue
 
597
-      fdir=`AS_DIRNAME(["$file"])`
 
598
-      AS_MKDIR_P([$dirpart/$fdir])
 
599
-      # echo "creating $dirpart/$file"
 
600
-      echo '# dummy' > "$dirpart/$file"
 
601
-    done
 
602
-  done
 
603
-}
 
604
-])# _AM_OUTPUT_DEPENDENCY_COMMANDS
 
605
-
 
606
-
 
607
-# AM_OUTPUT_DEPENDENCY_COMMANDS
 
608
-# -----------------------------
 
609
-# This macro should only be invoked once -- use via AC_REQUIRE.
 
610
-#
 
611
-# This code is only required when automatic dependency tracking
 
612
-# is enabled.  FIXME.  This creates each `.P' file that we will
 
613
-# need in order to bootstrap the dependency handling code.
 
614
-AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
 
615
-[AC_CONFIG_COMMANDS([depfiles],
 
616
-     [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
 
617
-     [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
 
618
-])
 
619
-
 
620
-# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005
 
621
-# Free Software Foundation, Inc.
 
622
-#
 
623
-# This file is free software; the Free Software Foundation
 
624
-# gives unlimited permission to copy and/or distribute it,
 
625
-# with or without modifications, as long as this notice is preserved.
 
626
-
 
627
-# serial 8
 
628
-
 
629
-# AM_CONFIG_HEADER is obsolete.  It has been replaced by AC_CONFIG_HEADERS.
 
630
-AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)])
 
631
-
 
632
-# Do all the work for Automake.                             -*- Autoconf -*-
 
633
-
 
634
-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
 
635
-# 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
 
636
-#
 
637
-# This file is free software; the Free Software Foundation
 
638
-# gives unlimited permission to copy and/or distribute it,
 
639
-# with or without modifications, as long as this notice is preserved.
 
640
-
 
641
-# serial 16
 
642
-
 
643
-# This macro actually does too much.  Some checks are only needed if
 
644
-# your package does certain things.  But this isn't really a big deal.
 
645
-
 
646
-# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
 
647
-# AM_INIT_AUTOMAKE([OPTIONS])
 
648
-# -----------------------------------------------
 
649
-# The call with PACKAGE and VERSION arguments is the old style
 
650
-# call (pre autoconf-2.50), which is being phased out.  PACKAGE
 
651
-# and VERSION should now be passed to AC_INIT and removed from
 
652
-# the call to AM_INIT_AUTOMAKE.
 
653
-# We support both call styles for the transition.  After
 
654
-# the next Automake release, Autoconf can make the AC_INIT
 
655
-# arguments mandatory, and then we can depend on a new Autoconf
 
656
-# release and drop the old call support.
 
657
-AC_DEFUN([AM_INIT_AUTOMAKE],
 
658
-[AC_PREREQ([2.62])dnl
 
659
-dnl Autoconf wants to disallow AM_ names.  We explicitly allow
 
660
-dnl the ones we care about.
 
661
-m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
 
662
-AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
 
663
-AC_REQUIRE([AC_PROG_INSTALL])dnl
 
664
-if test "`cd $srcdir && pwd`" != "`pwd`"; then
 
665
-  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
 
666
-  # is not polluted with repeated "-I."
 
667
-  AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
 
668
-  # test to see if srcdir already configured
 
669
-  if test -f $srcdir/config.status; then
 
670
-    AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
 
671
-  fi
 
672
-fi
 
673
-
 
674
-# test whether we have cygpath
 
675
-if test -z "$CYGPATH_W"; then
 
676
-  if (cygpath --version) >/dev/null 2>/dev/null; then
 
677
-    CYGPATH_W='cygpath -w'
 
678
-  else
 
679
-    CYGPATH_W=echo
 
680
-  fi
 
681
-fi
 
682
-AC_SUBST([CYGPATH_W])
 
683
-
 
684
-# Define the identity of the package.
 
685
-dnl Distinguish between old-style and new-style calls.
 
686
-m4_ifval([$2],
 
687
-[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
 
688
- AC_SUBST([PACKAGE], [$1])dnl
 
689
- AC_SUBST([VERSION], [$2])],
 
690
-[_AM_SET_OPTIONS([$1])dnl
 
691
-dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
 
692
-m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,,
 
693
-  [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
 
694
- AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
 
695
- AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
 
696
-
 
697
-_AM_IF_OPTION([no-define],,
 
698
-[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
 
699
- AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
 
700
-
 
701
-# Some tools Automake needs.
 
702
-AC_REQUIRE([AM_SANITY_CHECK])dnl
 
703
-AC_REQUIRE([AC_ARG_PROGRAM])dnl
 
704
-AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
 
705
-AM_MISSING_PROG(AUTOCONF, autoconf)
 
706
-AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
 
707
-AM_MISSING_PROG(AUTOHEADER, autoheader)
 
708
-AM_MISSING_PROG(MAKEINFO, makeinfo)
 
709
-AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
 
710
-AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
 
711
-AC_REQUIRE([AM_PROG_MKDIR_P])dnl
 
712
-# We need awk for the "check" target.  The system "awk" is bad on
 
713
-# some platforms.
 
714
-AC_REQUIRE([AC_PROG_AWK])dnl
 
715
-AC_REQUIRE([AC_PROG_MAKE_SET])dnl
 
716
-AC_REQUIRE([AM_SET_LEADING_DOT])dnl
 
717
-_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
 
718
-             [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
 
719
-                            [_AM_PROG_TAR([v7])])])
 
720
-_AM_IF_OPTION([no-dependencies],,
 
721
-[AC_PROVIDE_IFELSE([AC_PROG_CC],
 
722
-                 [_AM_DEPENDENCIES(CC)],
 
723
-                 [define([AC_PROG_CC],
 
724
-                         defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
 
725
-AC_PROVIDE_IFELSE([AC_PROG_CXX],
 
726
-                 [_AM_DEPENDENCIES(CXX)],
 
727
-                 [define([AC_PROG_CXX],
 
728
-                         defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
 
729
-AC_PROVIDE_IFELSE([AC_PROG_OBJC],
 
730
-                 [_AM_DEPENDENCIES(OBJC)],
 
731
-                 [define([AC_PROG_OBJC],
 
732
-                         defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
 
733
-])
 
734
-_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl
 
735
-dnl The `parallel-tests' driver may need to know about EXEEXT, so add the
 
736
-dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen.  This macro
 
737
-dnl is hooked onto _AC_COMPILER_EXEEXT early, see below.
 
738
-AC_CONFIG_COMMANDS_PRE(dnl
 
739
-[m4_provide_if([_AM_COMPILER_EXEEXT],
 
740
-  [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
 
741
-])
 
742
-
 
743
-dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion.  Do not
 
744
-dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
 
745
-dnl mangled by Autoconf and run in a shell conditional statement.
 
746
-m4_define([_AC_COMPILER_EXEEXT],
 
747
-m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
 
748
-
 
749
-
 
750
-# When config.status generates a header, we must update the stamp-h file.
 
751
-# This file resides in the same directory as the config header
 
752
-# that is generated.  The stamp files are numbered to have different names.
 
753
-
 
754
-# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
 
755
-# loop where config.status creates the headers, so we can generate
 
756
-# our stamp files there.
 
757
-AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
 
758
-[# Compute $1's index in $config_headers.
 
759
-_am_arg=$1
 
760
-_am_stamp_count=1
 
761
-for _am_header in $config_headers :; do
 
762
-  case $_am_header in
 
763
-    $_am_arg | $_am_arg:* )
 
764
-      break ;;
 
765
-    * )
 
766
-      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
 
767
-  esac
 
768
-done
 
769
-echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
 
770
-
 
771
-# Copyright (C) 2001, 2003, 2005, 2008  Free Software Foundation, Inc.
 
772
-#
 
773
-# This file is free software; the Free Software Foundation
 
774
-# gives unlimited permission to copy and/or distribute it,
 
775
-# with or without modifications, as long as this notice is preserved.
 
776
-
 
777
-# AM_PROG_INSTALL_SH
 
778
-# ------------------
 
779
-# Define $install_sh.
 
780
-AC_DEFUN([AM_PROG_INSTALL_SH],
 
781
-[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
 
782
-if test x"${install_sh}" != xset; then
 
783
-  case $am_aux_dir in
 
784
-  *\ * | *\    *)
 
785
-    install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
 
786
-  *)
 
787
-    install_sh="\${SHELL} $am_aux_dir/install-sh"
 
788
-  esac
 
789
-fi
 
790
-AC_SUBST(install_sh)])
 
791
-
 
792
-# Copyright (C) 2003, 2005  Free Software Foundation, Inc.
 
793
-#
 
794
-# This file is free software; the Free Software Foundation
 
795
-# gives unlimited permission to copy and/or distribute it,
 
796
-# with or without modifications, as long as this notice is preserved.
 
797
-
 
798
-# serial 2
 
799
-
 
800
-# Check whether the underlying file-system supports filenames
 
801
-# with a leading dot.  For instance MS-DOS doesn't.
 
802
-AC_DEFUN([AM_SET_LEADING_DOT],
 
803
-[rm -rf .tst 2>/dev/null
 
804
-mkdir .tst 2>/dev/null
 
805
-if test -d .tst; then
 
806
-  am__leading_dot=.
 
807
-else
 
808
-  am__leading_dot=_
 
809
-fi
 
810
-rmdir .tst 2>/dev/null
 
811
-AC_SUBST([am__leading_dot])])
 
812
-
 
813
-# Add --enable-maintainer-mode option to configure.         -*- Autoconf -*-
 
814
-# From Jim Meyering
 
815
-
 
816
-# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2008
 
817
-# Free Software Foundation, Inc.
 
818
-#
 
819
-# This file is free software; the Free Software Foundation
 
820
-# gives unlimited permission to copy and/or distribute it,
 
821
-# with or without modifications, as long as this notice is preserved.
 
822
-
 
823
-# serial 5
 
824
-
 
825
-# AM_MAINTAINER_MODE([DEFAULT-MODE])
 
826
-# ----------------------------------
 
827
-# Control maintainer-specific portions of Makefiles.
 
828
-# Default is to disable them, unless `enable' is passed literally.
 
829
-# For symmetry, `disable' may be passed as well.  Anyway, the user
 
830
-# can override the default with the --enable/--disable switch.
 
831
-AC_DEFUN([AM_MAINTAINER_MODE],
 
832
-[m4_case(m4_default([$1], [disable]),
 
833
-       [enable], [m4_define([am_maintainer_other], [disable])],
 
834
-       [disable], [m4_define([am_maintainer_other], [enable])],
 
835
-       [m4_define([am_maintainer_other], [enable])
 
836
-        m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])])
 
837
-AC_MSG_CHECKING([whether to am_maintainer_other maintainer-specific portions of Makefiles])
 
838
-  dnl maintainer-mode's default is 'disable' unless 'enable' is passed
 
839
-  AC_ARG_ENABLE([maintainer-mode],
 
840
-[  --][am_maintainer_other][-maintainer-mode  am_maintainer_other make rules and dependencies not useful
 
841
-                         (and sometimes confusing) to the casual installer],
 
842
-      [USE_MAINTAINER_MODE=$enableval],
 
843
-      [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes]))
 
844
-  AC_MSG_RESULT([$USE_MAINTAINER_MODE])
 
845
-  AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes])
 
846
-  MAINT=$MAINTAINER_MODE_TRUE
 
847
-  AC_SUBST([MAINT])dnl
 
848
-]
 
849
-)
 
850
-
 
851
-AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
 
852
+    GLIB_CFLAGS=`$PKG_CONFIG --cflags $pkg_config_args`
 
853
+    GLIB_LIBS=`$PKG_CONFIG --libs $pkg_config_args`
 
854
+    glib_config_major_version=`$PKG_CONFIG --modversion glib-2.0 | \
 
855
+           sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
 
856
+    glib_config_minor_version=`$PKG_CONFIG --modversion glib-2.0 | \
 
857
+           sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
 
858
+    glib_config_micro_version=`$PKG_CONFIG --modversion glib-2.0 | \
 
859
+           sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
 
860
+    if test "x$enable_glibtest" = "xyes" ; then
 
861
+      ac_save_CFLAGS="$CFLAGS"
 
862
+      ac_save_LIBS="$LIBS"
 
863
+      CFLAGS="$CFLAGS $GLIB_CFLAGS"
 
864
+      LIBS="$GLIB_LIBS $LIBS"
 
865
+dnl
 
866
+dnl Now check if the installed GLIB is sufficiently new. (Also sanity
 
867
+dnl checks the results of pkg-config to some extent)
 
868
+dnl
 
869
+      rm -f conf.glibtest
 
870
+      AC_TRY_RUN([
 
871
+#include <glib.h>
 
872
+#include <stdio.h>
 
873
+#include <stdlib.h>
 
874
 
 
875
-# Check to see how 'make' treats includes.                 -*- Autoconf -*-
 
876
+int 
 
877
+main ()
 
878
+{
 
879
+  int major, minor, micro;
 
880
+  char *tmp_version;
 
881
 
 
882
-# Copyright (C) 2001, 2002, 2003, 2005, 2009  Free Software Foundation, Inc.
 
883
-#
 
884
-# This file is free software; the Free Software Foundation
 
885
-# gives unlimited permission to copy and/or distribute it,
 
886
-# with or without modifications, as long as this notice is preserved.
 
887
+  fclose (fopen ("conf.glibtest", "w"));
 
888
 
 
889
-# serial 4
 
890
+  /* HP/UX 9 (%@#!) writes to sscanf strings */
 
891
+  tmp_version = g_strdup("$min_glib_version");
 
892
+  if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {
 
893
+     printf("%s, bad version string\n", "$min_glib_version");
 
894
+     exit(1);
 
895
+   }
 
896
 
 
897
-# AM_MAKE_INCLUDE()
 
898
-# -----------------
 
899
-# Check to see how make treats includes.
 
900
-AC_DEFUN([AM_MAKE_INCLUDE],
 
901
-[am_make=${MAKE-make}
 
902
-cat > confinc << 'END'
 
903
-am__doit:
 
904
-       @echo this is the am__doit target
 
905
-.PHONY: am__doit
 
906
-END
 
907
-# If we don't find an include directive, just comment out the code.
 
908
-AC_MSG_CHECKING([for style of include used by $am_make])
 
909
-am__include="#"
 
910
-am__quote=
 
911
-_am_result=none
 
912
-# First try GNU make style include.
 
913
-echo "include confinc" > confmf
 
914
-# Ignore all kinds of additional output from `make'.
 
915
-case `$am_make -s -f confmf 2> /dev/null` in #(
 
916
-*the\ am__doit\ target*)
 
917
-  am__include=include
 
918
-  am__quote=
 
919
-  _am_result=GNU
 
920
-  ;;
 
921
-esac
 
922
-# Now try BSD make style include.
 
923
-if test "$am__include" = "#"; then
 
924
-   echo '.include "confinc"' > confmf
 
925
-   case `$am_make -s -f confmf 2> /dev/null` in #(
 
926
-   *the\ am__doit\ target*)
 
927
-     am__include=.include
 
928
-     am__quote="\""
 
929
-     _am_result=BSD
 
930
-     ;;
 
931
-   esac
 
932
-fi
 
933
-AC_SUBST([am__include])
 
934
-AC_SUBST([am__quote])
 
935
-AC_MSG_RESULT([$_am_result])
 
936
-rm -f confinc confmf
 
937
+  if ((glib_major_version != $glib_config_major_version) ||
 
938
+      (glib_minor_version != $glib_config_minor_version) ||
 
939
+      (glib_micro_version != $glib_config_micro_version))
 
940
+    {
 
941
+      printf("\n*** 'pkg-config --modversion glib-2.0' returned %d.%d.%d, but GLIB (%d.%d.%d)\n", 
 
942
+             $glib_config_major_version, $glib_config_minor_version, $glib_config_micro_version,
 
943
+             glib_major_version, glib_minor_version, glib_micro_version);
 
944
+      printf ("*** was found! If pkg-config was correct, then it is best\n");
 
945
+      printf ("*** to remove the old version of GLib. You may also be able to fix the error\n");
 
946
+      printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n");
 
947
+      printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n");
 
948
+      printf("*** required on your system.\n");
 
949
+      printf("*** If pkg-config was wrong, set the environment variable PKG_CONFIG_PATH\n");
 
950
+      printf("*** to point to the correct configuration files\n");
 
951
+    } 
 
952
+  else if ((glib_major_version != GLIB_MAJOR_VERSION) ||
 
953
+          (glib_minor_version != GLIB_MINOR_VERSION) ||
 
954
+           (glib_micro_version != GLIB_MICRO_VERSION))
 
955
+    {
 
956
+      printf("*** GLIB header files (version %d.%d.%d) do not match\n",
 
957
+            GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION);
 
958
+      printf("*** library (version %d.%d.%d)\n",
 
959
+            glib_major_version, glib_minor_version, glib_micro_version);
 
960
+    }
 
961
+  else
 
962
+    {
 
963
+      if ((glib_major_version > major) ||
 
964
+        ((glib_major_version == major) && (glib_minor_version > minor)) ||
 
965
+        ((glib_major_version == major) && (glib_minor_version == minor) && (glib_micro_version >= micro)))
 
966
+      {
 
967
+        return 0;
 
968
+       }
 
969
+     else
 
970
+      {
 
971
+        printf("\n*** An old version of GLIB (%d.%d.%d) was found.\n",
 
972
+               glib_major_version, glib_minor_version, glib_micro_version);
 
973
+        printf("*** You need a version of GLIB newer than %d.%d.%d. The latest version of\n",
 
974
+              major, minor, micro);
 
975
+        printf("*** GLIB is always available from ftp://ftp.gtk.org.\n");
 
976
+        printf("***\n");
 
977
+        printf("*** If you have already installed a sufficiently new version, this error\n");
 
978
+        printf("*** probably means that the wrong copy of the pkg-config shell script is\n");
 
979
+        printf("*** being found. The easiest way to fix this is to remove the old version\n");
 
980
+        printf("*** of GLIB, but you can also set the PKG_CONFIG environment to point to the\n");
 
981
+        printf("*** correct copy of pkg-config. (In this case, you will have to\n");
 
982
+        printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n");
 
983
+        printf("*** so that the correct libraries are found at run-time))\n");
 
984
+      }
 
985
+    }
 
986
+  return 1;
 
987
+}
 
988
+],, no_glib=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
 
989
+       CFLAGS="$ac_save_CFLAGS"
 
990
+       LIBS="$ac_save_LIBS"
 
991
+     fi
 
992
+  fi
 
993
+  if test "x$no_glib" = x ; then
 
994
+     AC_MSG_RESULT(yes (version $glib_config_major_version.$glib_config_minor_version.$glib_config_micro_version))
 
995
+     ifelse([$2], , :, [$2])     
 
996
+  else
 
997
+     AC_MSG_RESULT(no)
 
998
+     if test "$PKG_CONFIG" = "no" ; then
 
999
+       echo "*** A new enough version of pkg-config was not found."
 
1000
+       echo "*** See http://www.freedesktop.org/software/pkgconfig/"
 
1001
+     else
 
1002
+       if test -f conf.glibtest ; then
 
1003
+        :
 
1004
+       else
 
1005
+          echo "*** Could not run GLIB test program, checking why..."
 
1006
+          ac_save_CFLAGS="$CFLAGS"
 
1007
+          ac_save_LIBS="$LIBS"
 
1008
+          CFLAGS="$CFLAGS $GLIB_CFLAGS"
 
1009
+          LIBS="$LIBS $GLIB_LIBS"
 
1010
+          AC_TRY_LINK([
 
1011
+#include <glib.h>
 
1012
+#include <stdio.h>
 
1013
+],      [ return ((glib_major_version) || (glib_minor_version) || (glib_micro_version)); ],
 
1014
+        [ echo "*** The test program compiled, but did not run. This usually means"
 
1015
+          echo "*** that the run-time linker is not finding GLIB or finding the wrong"
 
1016
+          echo "*** version of GLIB. If it is not finding GLIB, you'll need to set your"
 
1017
+          echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
 
1018
+          echo "*** to the installed location  Also, make sure you have run ldconfig if that"
 
1019
+          echo "*** is required on your system"
 
1020
+         echo "***"
 
1021
+          echo "*** If you have an old version installed, it is best to remove it, although"
 
1022
+          echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" ],
 
1023
+        [ echo "*** The test program failed to compile or link. See the file config.log for the"
 
1024
+          echo "*** exact error that occured. This usually means GLIB is incorrectly installed."])
 
1025
+          CFLAGS="$ac_save_CFLAGS"
 
1026
+          LIBS="$ac_save_LIBS"
 
1027
+       fi
 
1028
+     fi
 
1029
+     GLIB_CFLAGS=""
 
1030
+     GLIB_LIBS=""
 
1031
+     GLIB_GENMARSHAL=""
 
1032
+     GOBJECT_QUERY=""
 
1033
+     GLIB_MKENUMS=""
 
1034
+     ifelse([$3], , :, [$3])
 
1035
+  fi
 
1036
+  AC_SUBST(GLIB_CFLAGS)
 
1037
+  AC_SUBST(GLIB_LIBS)
 
1038
+  AC_SUBST(GLIB_GENMARSHAL)
 
1039
+  AC_SUBST(GOBJECT_QUERY)
 
1040
+  AC_SUBST(GLIB_MKENUMS)
 
1041
+  rm -f conf.glibtest
 
1042
 ])
 
1043
 
 
1044
-# Copyright (C) 1999, 2000, 2001, 2003, 2004, 2005, 2008
 
1045
-# Free Software Foundation, Inc.
 
1046
+# Copyright (C) 1995-2002 Free Software Foundation, Inc.
 
1047
+# Copyright (C) 2001-2003,2004 Red Hat, Inc.
 
1048
 #
 
1049
-# This file is free software; the Free Software Foundation
 
1050
-# gives unlimited permission to copy and/or distribute it,
 
1051
-# with or without modifications, as long as this notice is preserved.
 
1052
-
 
1053
-# serial 6
 
1054
-
 
1055
-# AM_PROG_CC_C_O
 
1056
-# --------------
 
1057
-# Like AC_PROG_CC_C_O, but changed for automake.
 
1058
-AC_DEFUN([AM_PROG_CC_C_O],
 
1059
-[AC_REQUIRE([AC_PROG_CC_C_O])dnl
 
1060
-AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
 
1061
-AC_REQUIRE_AUX_FILE([compile])dnl
 
1062
-# FIXME: we rely on the cache variable name because
 
1063
-# there is no other way.
 
1064
-set dummy $CC
 
1065
-am_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']`
 
1066
-eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o
 
1067
-if test "$am_t" != yes; then
 
1068
-   # Losing compiler, so override with the script.
 
1069
-   # FIXME: It is wrong to rewrite CC.
 
1070
-   # But if we don't then we get into trouble of one sort or another.
 
1071
-   # A longer-term fix would be to have automake use am__CC in this case,
 
1072
-   # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
 
1073
-   CC="$am_aux_dir/compile $CC"
 
1074
-fi
 
1075
-dnl Make sure AC_PROG_CC is never called again, or it will override our
 
1076
-dnl setting of CC.
 
1077
-m4_define([AC_PROG_CC],
 
1078
-          [m4_fatal([AC_PROG_CC cannot be called after AM_PROG_CC_C_O])])
 
1079
-])
 
1080
-
 
1081
-# Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*-
 
1082
-
 
1083
-# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008
 
1084
-# Free Software Foundation, Inc.
 
1085
+# This file is free software, distributed under the terms of the GNU
 
1086
+# General Public License.  As a special exception to the GNU General
 
1087
+# Public License, this file may be distributed as part of a program
 
1088
+# that contains a configuration script generated by Autoconf, under
 
1089
+# the same distribution terms as the rest of that program.
 
1090
 #
 
1091
-# This file is free software; the Free Software Foundation
 
1092
-# gives unlimited permission to copy and/or distribute it,
 
1093
-# with or without modifications, as long as this notice is preserved.
 
1094
-
 
1095
-# serial 6
 
1096
-
 
1097
-# AM_MISSING_PROG(NAME, PROGRAM)
 
1098
-# ------------------------------
 
1099
-AC_DEFUN([AM_MISSING_PROG],
 
1100
-[AC_REQUIRE([AM_MISSING_HAS_RUN])
 
1101
-$1=${$1-"${am_missing_run}$2"}
 
1102
-AC_SUBST($1)])
 
1103
-
 
1104
-
 
1105
-# AM_MISSING_HAS_RUN
 
1106
-# ------------------
 
1107
-# Define MISSING if not defined so far and test if it supports --run.
 
1108
-# If it does, set am_missing_run to use it, otherwise, to nothing.
 
1109
-AC_DEFUN([AM_MISSING_HAS_RUN],
 
1110
-[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
 
1111
-AC_REQUIRE_AUX_FILE([missing])dnl
 
1112
-if test x"${MISSING+set}" != xset; then
 
1113
-  case $am_aux_dir in
 
1114
-  *\ * | *\    *)
 
1115
-    MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
 
1116
-  *)
 
1117
-    MISSING="\${SHELL} $am_aux_dir/missing" ;;
 
1118
-  esac
 
1119
-fi
 
1120
-# Use eval to expand $SHELL
 
1121
-if eval "$MISSING --run true"; then
 
1122
-  am_missing_run="$MISSING --run "
 
1123
-else
 
1124
-  am_missing_run=
 
1125
-  AC_MSG_WARN([`missing' script is too old or missing])
 
1126
-fi
 
1127
-])
 
1128
-
 
1129
-# Copyright (C) 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
 
1130
+# This file can be copied and used freely without restrictions.  It can
 
1131
+# be used in projects which are not available under the GNU Public License
 
1132
+# but which still want to provide support for the GNU gettext functionality.
 
1133
 #
 
1134
-# This file is free software; the Free Software Foundation
 
1135
-# gives unlimited permission to copy and/or distribute it,
 
1136
-# with or without modifications, as long as this notice is preserved.
 
1137
-
 
1138
-# AM_PROG_MKDIR_P
 
1139
-# ---------------
 
1140
-# Check for `mkdir -p'.
 
1141
-AC_DEFUN([AM_PROG_MKDIR_P],
 
1142
-[AC_PREREQ([2.60])dnl
 
1143
-AC_REQUIRE([AC_PROG_MKDIR_P])dnl
 
1144
-dnl Automake 1.8 to 1.9.6 used to define mkdir_p.  We now use MKDIR_P,
 
1145
-dnl while keeping a definition of mkdir_p for backward compatibility.
 
1146
-dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
 
1147
-dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of
 
1148
-dnl Makefile.ins that do not define MKDIR_P, so we do our own
 
1149
-dnl adjustment using top_builddir (which is defined more often than
 
1150
-dnl MKDIR_P).
 
1151
-AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
 
1152
-case $mkdir_p in
 
1153
-  [[\\/$]]* | ?:[[\\/]]*) ;;
 
1154
-  */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
 
1155
-esac
 
1156
-])
 
1157
-
 
1158
-# Helper functions for option handling.                     -*- Autoconf -*-
 
1159
-
 
1160
-# Copyright (C) 2001, 2002, 2003, 2005, 2008  Free Software Foundation, Inc.
 
1161
+# Macro to add for using GNU gettext.
 
1162
+# Ulrich Drepper <drepper@cygnus.com>, 1995, 1996
 
1163
 #
 
1164
-# This file is free software; the Free Software Foundation
 
1165
-# gives unlimited permission to copy and/or distribute it,
 
1166
-# with or without modifications, as long as this notice is preserved.
 
1167
-
 
1168
-# serial 4
 
1169
-
 
1170
-# _AM_MANGLE_OPTION(NAME)
 
1171
-# -----------------------
 
1172
-AC_DEFUN([_AM_MANGLE_OPTION],
 
1173
-[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
 
1174
-
 
1175
-# _AM_SET_OPTION(NAME)
 
1176
-# ------------------------------
 
1177
-# Set option NAME.  Presently that only means defining a flag for this option.
 
1178
-AC_DEFUN([_AM_SET_OPTION],
 
1179
-[m4_define(_AM_MANGLE_OPTION([$1]), 1)])
 
1180
-
 
1181
-# _AM_SET_OPTIONS(OPTIONS)
 
1182
-# ----------------------------------
 
1183
-# OPTIONS is a space-separated list of Automake options.
 
1184
-AC_DEFUN([_AM_SET_OPTIONS],
 
1185
-[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
 
1186
-
 
1187
-# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
 
1188
-# -------------------------------------------
 
1189
-# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
 
1190
-AC_DEFUN([_AM_IF_OPTION],
 
1191
-[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
 
1192
-
 
1193
-# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008, 2009
 
1194
-# Free Software Foundation, Inc.
 
1195
+# Modified to never use included libintl. 
 
1196
+# Owen Taylor <otaylor@redhat.com>, 12/15/1998
 
1197
 #
 
1198
-# This file is free software; the Free Software Foundation
 
1199
-# gives unlimited permission to copy and/or distribute it,
 
1200
-# with or without modifications, as long as this notice is preserved.
 
1201
-
 
1202
-# AM_PATH_PYTHON([MINIMUM-VERSION], [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
 
1203
-# ---------------------------------------------------------------------------
 
1204
-# Adds support for distributing Python modules and packages.  To
 
1205
-# install modules, copy them to $(pythondir), using the python_PYTHON
 
1206
-# automake variable.  To install a package with the same name as the
 
1207
-# automake package, install to $(pkgpythondir), or use the
 
1208
-# pkgpython_PYTHON automake variable.
 
1209
+# Major rework to remove unused code
 
1210
+# Owen Taylor <otaylor@redhat.com>, 12/11/2002
 
1211
 #
 
1212
-# The variables $(pyexecdir) and $(pkgpyexecdir) are provided as
 
1213
-# locations to install python extension modules (shared libraries).
 
1214
-# Another macro is required to find the appropriate flags to compile
 
1215
-# extension modules.
 
1216
+# Added better handling of ALL_LINGUAS from GNU gettext version 
 
1217
+# written by Bruno Haible, Owen Taylor <otaylor.redhat.com> 5/30/3002
 
1218
 #
 
1219
-# If your package is configured with a different prefix to python,
 
1220
-# users will have to add the install directory to the PYTHONPATH
 
1221
-# environment variable, or create a .pth file (see the python
 
1222
-# documentation for details).
 
1223
+# Modified to require ngettext
 
1224
+# Matthias Clasen <mclasen@redhat.com> 08/06/2004
 
1225
 #
 
1226
-# If the MINIMUM-VERSION argument is passed, AM_PATH_PYTHON will
 
1227
-# cause an error if the version of python installed on the system
 
1228
-# doesn't meet the requirement.  MINIMUM-VERSION should consist of
 
1229
-# numbers and dots only.
 
1230
-AC_DEFUN([AM_PATH_PYTHON],
 
1231
- [
 
1232
-  dnl Find a Python interpreter.  Python versions prior to 2.0 are not
 
1233
-  dnl supported. (2.0 was released on October 16, 2000).
 
1234
-  m4_define_default([_AM_PYTHON_INTERPRETER_LIST],
 
1235
-                    [python python2 python3 python3.0 python2.5 python2.4 python2.3 python2.2 dnl
 
1236
-python2.1 python2.0])
 
1237
-
 
1238
-  m4_if([$1],[],[
 
1239
-    dnl No version check is needed.
 
1240
-    # Find any Python interpreter.
 
1241
-    if test -z "$PYTHON"; then
 
1242
-      AC_PATH_PROGS([PYTHON], _AM_PYTHON_INTERPRETER_LIST, :)
 
1243
-    fi
 
1244
-    am_display_PYTHON=python
 
1245
-  ], [
 
1246
-    dnl A version check is needed.
 
1247
-    if test -n "$PYTHON"; then
 
1248
-      # If the user set $PYTHON, use it and don't search something else.
 
1249
-      AC_MSG_CHECKING([whether $PYTHON version >= $1])
 
1250
-      AM_PYTHON_CHECK_VERSION([$PYTHON], [$1],
 
1251
-                             [AC_MSG_RESULT(yes)],
 
1252
-                             [AC_MSG_ERROR(too old)])
 
1253
-      am_display_PYTHON=$PYTHON
 
1254
-    else
 
1255
-      # Otherwise, try each interpreter until we find one that satisfies
 
1256
-      # VERSION.
 
1257
-      AC_CACHE_CHECK([for a Python interpreter with version >= $1],
 
1258
-       [am_cv_pathless_PYTHON],[
 
1259
-       for am_cv_pathless_PYTHON in _AM_PYTHON_INTERPRETER_LIST none; do
 
1260
-         test "$am_cv_pathless_PYTHON" = none && break
 
1261
-         AM_PYTHON_CHECK_VERSION([$am_cv_pathless_PYTHON], [$1], [break])
 
1262
-       done])
 
1263
-      # Set $PYTHON to the absolute path of $am_cv_pathless_PYTHON.
 
1264
-      if test "$am_cv_pathless_PYTHON" = none; then
 
1265
-       PYTHON=:
 
1266
-      else
 
1267
-        AC_PATH_PROG([PYTHON], [$am_cv_pathless_PYTHON])
 
1268
-      fi
 
1269
-      am_display_PYTHON=$am_cv_pathless_PYTHON
 
1270
-    fi
 
1271
-  ])
 
1272
+# We need this here as well, since someone might use autoconf-2.5x
 
1273
+# to configure GLib then an older version to configure a package
 
1274
+# using AM_GLIB_GNU_GETTEXT
 
1275
+AC_PREREQ(2.53)
 
1276
 
 
1277
-  if test "$PYTHON" = :; then
 
1278
-  dnl Run any user-specified action, or abort.
 
1279
-    m4_default([$3], [AC_MSG_ERROR([no suitable Python interpreter found])])
 
1280
-  else
 
1281
+dnl
 
1282
+dnl We go to great lengths to make sure that aclocal won't 
 
1283
+dnl try to pull in the installed version of these macros
 
1284
+dnl when running aclocal in the glib directory.
 
1285
+dnl
 
1286
+m4_copy([AC_DEFUN],[glib_DEFUN])
 
1287
+m4_copy([AC_REQUIRE],[glib_REQUIRE])
 
1288
+dnl
 
1289
+dnl At the end, if we're not within glib, we'll define the public
 
1290
+dnl definitions in terms of our private definitions.
 
1291
+dnl
 
1292
 
 
1293
-  dnl Query Python for its version number.  Getting [:3] seems to be
 
1294
-  dnl the best way to do this; it's what "site.py" does in the standard
 
1295
-  dnl library.
 
1296
+# GLIB_LC_MESSAGES
 
1297
+#--------------------
 
1298
+glib_DEFUN([GLIB_LC_MESSAGES],
 
1299
+  [AC_CHECK_HEADERS([locale.h])
 
1300
+    if test $ac_cv_header_locale_h = yes; then
 
1301
+    AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES,
 
1302
+      [AC_TRY_LINK([#include <locale.h>], [return LC_MESSAGES],
 
1303
+       am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)])
 
1304
+    if test $am_cv_val_LC_MESSAGES = yes; then
 
1305
+      AC_DEFINE(HAVE_LC_MESSAGES, 1,
 
1306
+        [Define if your <locale.h> file defines LC_MESSAGES.])
 
1307
+    fi
 
1308
+  fi])
 
1309
 
 
1310
-  AC_CACHE_CHECK([for $am_display_PYTHON version], [am_cv_python_version],
 
1311
-    [am_cv_python_version=`$PYTHON -c "import sys; sys.stdout.write(sys.version[[:3]])"`])
 
1312
-  AC_SUBST([PYTHON_VERSION], [$am_cv_python_version])
 
1313
+# GLIB_PATH_PROG_WITH_TEST
 
1314
+#----------------------------
 
1315
+dnl GLIB_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR,
 
1316
+dnl   TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]])
 
1317
+glib_DEFUN([GLIB_PATH_PROG_WITH_TEST],
 
1318
+[# Extract the first word of "$2", so it can be a program name with args.
 
1319
+set dummy $2; ac_word=[$]2
 
1320
+AC_MSG_CHECKING([for $ac_word])
 
1321
+AC_CACHE_VAL(ac_cv_path_$1,
 
1322
+[case "[$]$1" in
 
1323
+  /*)
 
1324
+  ac_cv_path_$1="[$]$1" # Let the user override the test with a path.
 
1325
+  ;;
 
1326
+  *)
 
1327
+  IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
 
1328
+  for ac_dir in ifelse([$5], , $PATH, [$5]); do
 
1329
+    test -z "$ac_dir" && ac_dir=.
 
1330
+    if test -f $ac_dir/$ac_word; then
 
1331
+      if [$3]; then
 
1332
+       ac_cv_path_$1="$ac_dir/$ac_word"
 
1333
+       break
 
1334
+      fi
 
1335
+    fi
 
1336
+  done
 
1337
+  IFS="$ac_save_ifs"
 
1338
+dnl If no 4th arg is given, leave the cache variable unset,
 
1339
+dnl so AC_PATH_PROGS will keep looking.
 
1340
+ifelse([$4], , , [  test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4"
 
1341
+])dnl
 
1342
+  ;;
 
1343
+esac])dnl
 
1344
+$1="$ac_cv_path_$1"
 
1345
+if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then
 
1346
+  AC_MSG_RESULT([$]$1)
 
1347
+else
 
1348
+  AC_MSG_RESULT(no)
 
1349
+fi
 
1350
+AC_SUBST($1)dnl
 
1351
+])
 
1352
 
 
1353
-  dnl Use the values of $prefix and $exec_prefix for the corresponding
 
1354
-  dnl values of PYTHON_PREFIX and PYTHON_EXEC_PREFIX.  These are made
 
1355
-  dnl distinct variables so they can be overridden if need be.  However,
 
1356
-  dnl general consensus is that you shouldn't need this ability.
 
1357
+# GLIB_WITH_NLS
 
1358
+#-----------------
 
1359
+glib_DEFUN([GLIB_WITH_NLS],
 
1360
+  dnl NLS is obligatory
 
1361
+  [USE_NLS=yes
 
1362
+    AC_SUBST(USE_NLS)
 
1363
 
 
1364
-  AC_SUBST([PYTHON_PREFIX], ['${prefix}'])
 
1365
-  AC_SUBST([PYTHON_EXEC_PREFIX], ['${exec_prefix}'])
 
1366
+    gt_cv_have_gettext=no
 
1367
 
 
1368
-  dnl At times (like when building shared libraries) you may want
 
1369
-  dnl to know which OS platform Python thinks this is.
 
1370
+    CATOBJEXT=NONE
 
1371
+    XGETTEXT=:
 
1372
+    INTLLIBS=
 
1373
 
 
1374
-  AC_CACHE_CHECK([for $am_display_PYTHON platform], [am_cv_python_platform],
 
1375
-    [am_cv_python_platform=`$PYTHON -c "import sys; sys.stdout.write(sys.platform)"`])
 
1376
-  AC_SUBST([PYTHON_PLATFORM], [$am_cv_python_platform])
 
1377
+    AC_CHECK_HEADER(libintl.h,
 
1378
+     [gt_cv_func_dgettext_libintl="no"
 
1379
+      libintl_extra_libs=""
 
1380
 
 
1381
+      #
 
1382
+      # First check in libc
 
1383
+      #
 
1384
+      AC_CACHE_CHECK([for ngettext in libc], gt_cv_func_ngettext_libc,
 
1385
+        [AC_TRY_LINK([
 
1386
+#include <libintl.h>
 
1387
+],
 
1388
+         [return !ngettext ("","", 1)],
 
1389
+         gt_cv_func_ngettext_libc=yes,
 
1390
+          gt_cv_func_ngettext_libc=no)
 
1391
+        ])
 
1392
+  
 
1393
+      if test "$gt_cv_func_ngettext_libc" = "yes" ; then
 
1394
+             AC_CACHE_CHECK([for dgettext in libc], gt_cv_func_dgettext_libc,
 
1395
+               [AC_TRY_LINK([
 
1396
+#include <libintl.h>
 
1397
+],
 
1398
+                 [return !dgettext ("","")],
 
1399
+                 gt_cv_func_dgettext_libc=yes,
 
1400
+                 gt_cv_func_dgettext_libc=no)
 
1401
+               ])
 
1402
+      fi
 
1403
+  
 
1404
+      if test "$gt_cv_func_ngettext_libc" = "yes" ; then
 
1405
+        AC_CHECK_FUNCS(bind_textdomain_codeset)
 
1406
+      fi
 
1407
 
 
1408
-  dnl Set up 4 directories:
 
1409
+      #
 
1410
+      # If we don't have everything we want, check in libintl
 
1411
+      #
 
1412
+      if test "$gt_cv_func_dgettext_libc" != "yes" \
 
1413
+        || test "$gt_cv_func_ngettext_libc" != "yes" \
 
1414
+         || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then
 
1415
+        
 
1416
+        AC_CHECK_LIB(intl, bindtextdomain,
 
1417
+           [AC_CHECK_LIB(intl, ngettext,
 
1418
+                   [AC_CHECK_LIB(intl, dgettext,
 
1419
+                                 gt_cv_func_dgettext_libintl=yes)])])
 
1420
 
 
1421
-  dnl pythondir -- where to install python scripts.  This is the
 
1422
-  dnl   site-packages directory, not the python standard library
 
1423
-  dnl   directory like in previous automake betas.  This behavior
 
1424
-  dnl   is more consistent with lispdir.m4 for example.
 
1425
-  dnl Query distutils for this directory.  distutils does not exist in
 
1426
-  dnl Python 1.5, so we fall back to the hardcoded directory if it
 
1427
-  dnl doesn't work.
 
1428
-  AC_CACHE_CHECK([for $am_display_PYTHON script directory],
 
1429
-    [am_cv_python_pythondir],
 
1430
-    [if test "x$prefix" = xNONE
 
1431
-     then
 
1432
-       am_py_prefix=$ac_default_prefix
 
1433
-     else
 
1434
-       am_py_prefix=$prefix
 
1435
-     fi
 
1436
-     am_cv_python_pythondir=`$PYTHON -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(0,0,prefix='$am_py_prefix'))" 2>/dev/null ||
 
1437
-     echo "$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages"`
 
1438
-     case $am_cv_python_pythondir in
 
1439
-     $am_py_prefix*)
 
1440
-       am__strip_prefix=`echo "$am_py_prefix" | sed 's|.|.|g'`
 
1441
-       am_cv_python_pythondir=`echo "$am_cv_python_pythondir" | sed "s,^$am__strip_prefix,$PYTHON_PREFIX,"`
 
1442
-       ;;
 
1443
-     *)
 
1444
-       case $am_py_prefix in
 
1445
-         /usr|/System*) ;;
 
1446
-         *)
 
1447
-         am_cv_python_pythondir=$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages
 
1448
-         ;;
 
1449
-       esac
 
1450
-       ;;
 
1451
-     esac
 
1452
-    ])
 
1453
-  AC_SUBST([pythondir], [$am_cv_python_pythondir])
 
1454
+       if test "$gt_cv_func_dgettext_libintl" != "yes" ; then
 
1455
+         AC_MSG_CHECKING([if -liconv is needed to use gettext])
 
1456
+         AC_MSG_RESULT([])
 
1457
+         AC_CHECK_LIB(intl, ngettext,
 
1458
+               [AC_CHECK_LIB(intl, dcgettext,
 
1459
+                      [gt_cv_func_dgettext_libintl=yes
 
1460
+                       libintl_extra_libs=-liconv],
 
1461
+                       :,-liconv)],
 
1462
+               :,-liconv)
 
1463
+        fi
 
1464
 
 
1465
-  dnl pkgpythondir -- $PACKAGE directory under pythondir.  Was
 
1466
-  dnl   PYTHON_SITE_PACKAGE in previous betas, but this naming is
 
1467
-  dnl   more consistent with the rest of automake.
 
1468
+        #
 
1469
+        # If we found libintl, then check in it for bind_textdomain_codeset();
 
1470
+        # we'll prefer libc if neither have bind_textdomain_codeset(),
 
1471
+        # and both have dgettext and ngettext
 
1472
+        #
 
1473
+        if test "$gt_cv_func_dgettext_libintl" = "yes" ; then
 
1474
+          glib_save_LIBS="$LIBS"
 
1475
+          LIBS="$LIBS -lintl $libintl_extra_libs"
 
1476
+          unset ac_cv_func_bind_textdomain_codeset
 
1477
+          AC_CHECK_FUNCS(bind_textdomain_codeset)
 
1478
+          LIBS="$glib_save_LIBS"
 
1479
 
 
1480
-  AC_SUBST([pkgpythondir], [\${pythondir}/$PACKAGE])
 
1481
+          if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then
 
1482
+            gt_cv_func_dgettext_libc=no
 
1483
+          else
 
1484
+            if test "$gt_cv_func_dgettext_libc" = "yes" \
 
1485
+               && test "$gt_cv_func_ngettext_libc" = "yes"; then
 
1486
+              gt_cv_func_dgettext_libintl=no
 
1487
+            fi
 
1488
+          fi
 
1489
+        fi
 
1490
+      fi
 
1491
 
 
1492
-  dnl pyexecdir -- directory for installing python extension modules
 
1493
-  dnl   (shared libraries)
 
1494
-  dnl Query distutils for this directory.  distutils does not exist in
 
1495
-  dnl Python 1.5, so we fall back to the hardcoded directory if it
 
1496
-  dnl doesn't work.
 
1497
-  AC_CACHE_CHECK([for $am_display_PYTHON extension module directory],
 
1498
-    [am_cv_python_pyexecdir],
 
1499
-    [if test "x$exec_prefix" = xNONE
 
1500
-     then
 
1501
-       am_py_exec_prefix=$am_py_prefix
 
1502
-     else
 
1503
-       am_py_exec_prefix=$exec_prefix
 
1504
-     fi
 
1505
-     am_cv_python_pyexecdir=`$PYTHON -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(1,0,prefix='$am_py_exec_prefix'))" 2>/dev/null ||
 
1506
-     echo "$PYTHON_EXEC_PREFIX/lib/python$PYTHON_VERSION/site-packages"`
 
1507
-     case $am_cv_python_pyexecdir in
 
1508
-     $am_py_exec_prefix*)
 
1509
-       am__strip_prefix=`echo "$am_py_exec_prefix" | sed 's|.|.|g'`
 
1510
-       am_cv_python_pyexecdir=`echo "$am_cv_python_pyexecdir" | sed "s,^$am__strip_prefix,$PYTHON_EXEC_PREFIX,"`
 
1511
-       ;;
 
1512
-     *)
 
1513
-       case $am_py_exec_prefix in
 
1514
-         /usr|/System*) ;;
 
1515
-         *)
 
1516
-          am_cv_python_pyexecdir=$PYTHON_EXEC_PREFIX/lib/python$PYTHON_VERSION/site-packages
 
1517
-          ;;
 
1518
-       esac
 
1519
-       ;;
 
1520
-     esac
 
1521
+      if test "$gt_cv_func_dgettext_libc" = "yes" \
 
1522
+       || test "$gt_cv_func_dgettext_libintl" = "yes"; then
 
1523
+        gt_cv_have_gettext=yes
 
1524
+      fi
 
1525
+  
 
1526
+      if test "$gt_cv_func_dgettext_libintl" = "yes"; then
 
1527
+        INTLLIBS="-lintl $libintl_extra_libs"
 
1528
+      fi
 
1529
+  
 
1530
+      if test "$gt_cv_have_gettext" = "yes"; then
 
1531
+       AC_DEFINE(HAVE_GETTEXT,1,
 
1532
+         [Define if the GNU gettext() function is already present or preinstalled.])
 
1533
+       GLIB_PATH_PROG_WITH_TEST(MSGFMT, msgfmt,
 
1534
+         [test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"], no)dnl
 
1535
+       if test "$MSGFMT" != "no"; then
 
1536
+          glib_save_LIBS="$LIBS"
 
1537
+          LIBS="$LIBS $INTLLIBS"
 
1538
+         AC_CHECK_FUNCS(dcgettext)
 
1539
+         MSGFMT_OPTS=
 
1540
+         AC_MSG_CHECKING([if msgfmt accepts -c])
 
1541
+         GLIB_RUN_PROG([$MSGFMT -c -o /dev/null],[
 
1542
+msgid ""
 
1543
+msgstr ""
 
1544
+"Content-Type: text/plain; charset=UTF-8\n"
 
1545
+"Project-Id-Version: test 1.0\n"
 
1546
+"PO-Revision-Date: 2007-02-15 12:01+0100\n"
 
1547
+"Last-Translator: test <foo@bar.xx>\n"
 
1548
+"Language-Team: C <LL@li.org>\n"
 
1549
+"MIME-Version: 1.0\n"
 
1550
+"Content-Transfer-Encoding: 8bit\n"
 
1551
+], [MSGFMT_OPTS=-c; AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no])])
 
1552
+         AC_SUBST(MSGFMT_OPTS)
 
1553
+         AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT)
 
1554
+         GLIB_PATH_PROG_WITH_TEST(XGETTEXT, xgettext,
 
1555
+           [test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"], :)
 
1556
+         AC_TRY_LINK(, [extern int _nl_msg_cat_cntr;
 
1557
+                        return _nl_msg_cat_cntr],
 
1558
+           [CATOBJEXT=.gmo 
 
1559
+             DATADIRNAME=share],
 
1560
+           [case $host in
 
1561
+           *-*-solaris*)
 
1562
+           dnl On Solaris, if bind_textdomain_codeset is in libc,
 
1563
+           dnl GNU format message catalog is always supported,
 
1564
+            dnl since both are added to the libc all together.
 
1565
+           dnl Hence, we'd like to go with DATADIRNAME=share and
 
1566
+           dnl and CATOBJEXT=.gmo in this case.
 
1567
+            AC_CHECK_FUNC(bind_textdomain_codeset,
 
1568
+             [CATOBJEXT=.gmo 
 
1569
+               DATADIRNAME=share],
 
1570
+             [CATOBJEXT=.mo
 
1571
+               DATADIRNAME=lib])
 
1572
+           ;;
 
1573
+           *)
 
1574
+           CATOBJEXT=.mo
 
1575
+            DATADIRNAME=lib
 
1576
+           ;;
 
1577
+           esac])
 
1578
+          LIBS="$glib_save_LIBS"
 
1579
+         INSTOBJEXT=.mo
 
1580
+       else
 
1581
+         gt_cv_have_gettext=no
 
1582
+       fi
 
1583
+      fi
 
1584
     ])
 
1585
-  AC_SUBST([pyexecdir], [$am_cv_python_pyexecdir])
 
1586
 
 
1587
-  dnl pkgpyexecdir -- $(pyexecdir)/$(PACKAGE)
 
1588
+    if test "$gt_cv_have_gettext" = "yes" ; then
 
1589
+      AC_DEFINE(ENABLE_NLS, 1,
 
1590
+        [always defined to indicate that i18n is enabled])
 
1591
+    fi
 
1592
 
 
1593
-  AC_SUBST([pkgpyexecdir], [\${pyexecdir}/$PACKAGE])
 
1594
+    dnl Test whether we really found GNU xgettext.
 
1595
+    if test "$XGETTEXT" != ":"; then
 
1596
+      dnl If it is not GNU xgettext we define it as : so that the
 
1597
+      dnl Makefiles still can work.
 
1598
+      if $XGETTEXT --omit-header /dev/null 2> /dev/null; then
 
1599
+        : ;
 
1600
+      else
 
1601
+        AC_MSG_RESULT(
 
1602
+         [found xgettext program is not GNU xgettext; ignore it])
 
1603
+        XGETTEXT=":"
 
1604
+      fi
 
1605
+    fi
 
1606
 
 
1607
-  dnl Run any user-specified action.
 
1608
-  $2
 
1609
-  fi
 
1610
+    # We need to process the po/ directory.
 
1611
+    POSUB=po
 
1612
 
 
1613
-])
 
1614
+    AC_OUTPUT_COMMANDS(
 
1615
+      [case "$CONFIG_FILES" in *po/Makefile.in*)
 
1616
+        sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile
 
1617
+      esac])
 
1618
 
 
1619
+    dnl These rules are solely for the distribution goal.  While doing this
 
1620
+    dnl we only have to keep exactly one list of the available catalogs
 
1621
+    dnl in configure.ac.
 
1622
+    for lang in $ALL_LINGUAS; do
 
1623
+      GMOFILES="$GMOFILES $lang.gmo"
 
1624
+      POFILES="$POFILES $lang.po"
 
1625
+    done
 
1626
 
 
1627
-# AM_PYTHON_CHECK_VERSION(PROG, VERSION, [ACTION-IF-TRUE], [ACTION-IF-FALSE])
 
1628
-# ---------------------------------------------------------------------------
 
1629
-# Run ACTION-IF-TRUE if the Python interpreter PROG has version >= VERSION.
 
1630
-# Run ACTION-IF-FALSE otherwise.
 
1631
-# This test uses sys.hexversion instead of the string equivalent (first
 
1632
-# word of sys.version), in order to cope with versions such as 2.2c1.
 
1633
-# This supports Python 2.0 or higher. (2.0 was released on October 16, 2000).
 
1634
-AC_DEFUN([AM_PYTHON_CHECK_VERSION],
 
1635
- [prog="import sys
 
1636
-# split strings by '.' and convert to numeric.  Append some zeros
 
1637
-# because we need at least 4 digits for the hex conversion.
 
1638
-# map returns an iterator in Python 3.0 and a list in 2.x
 
1639
-minver = list(map(int, '$2'.split('.'))) + [[0, 0, 0]]
 
1640
-minverhex = 0
 
1641
-# xrange is not present in Python 3.0 and range returns an iterator
 
1642
-for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[[i]]
 
1643
-sys.exit(sys.hexversion < minverhex)"
 
1644
-  AS_IF([AM_RUN_LOG([$1 -c "$prog"])], [$3], [$4])])
 
1645
+    dnl Make all variables we use known to autoconf.
 
1646
+    AC_SUBST(CATALOGS)
 
1647
+    AC_SUBST(CATOBJEXT)
 
1648
+    AC_SUBST(DATADIRNAME)
 
1649
+    AC_SUBST(GMOFILES)
 
1650
+    AC_SUBST(INSTOBJEXT)
 
1651
+    AC_SUBST(INTLLIBS)
 
1652
+    AC_SUBST(PO_IN_DATADIR_TRUE)
 
1653
+    AC_SUBST(PO_IN_DATADIR_FALSE)
 
1654
+    AC_SUBST(POFILES)
 
1655
+    AC_SUBST(POSUB)
 
1656
+  ])
 
1657
 
 
1658
-# Check to make sure that the build environment is sane.    -*- Autoconf -*-
 
1659
+# AM_GLIB_GNU_GETTEXT
 
1660
+# -------------------
 
1661
+# Do checks necessary for use of gettext. If a suitable implementation 
 
1662
+# of gettext is found in either in libintl or in the C library,
 
1663
+# it will set INTLLIBS to the libraries needed for use of gettext
 
1664
+# and AC_DEFINE() HAVE_GETTEXT and ENABLE_NLS. (The shell variable
 
1665
+# gt_cv_have_gettext will be set to "yes".) It will also call AC_SUBST()
 
1666
+# on various variables needed by the Makefile.in.in installed by 
 
1667
+# glib-gettextize.
 
1668
+dnl
 
1669
+glib_DEFUN([GLIB_GNU_GETTEXT],
 
1670
+  [AC_REQUIRE([AC_PROG_CC])dnl
 
1671
+   AC_REQUIRE([AC_HEADER_STDC])dnl
 
1672
+   
 
1673
+   GLIB_LC_MESSAGES
 
1674
+   GLIB_WITH_NLS
 
1675
 
 
1676
-# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008
 
1677
-# Free Software Foundation, Inc.
 
1678
-#
 
1679
-# This file is free software; the Free Software Foundation
 
1680
-# gives unlimited permission to copy and/or distribute it,
 
1681
-# with or without modifications, as long as this notice is preserved.
 
1682
+   if test "$gt_cv_have_gettext" = "yes"; then
 
1683
+     if test "x$ALL_LINGUAS" = "x"; then
 
1684
+       LINGUAS=
 
1685
+     else
 
1686
+       AC_MSG_CHECKING(for catalogs to be installed)
 
1687
+       NEW_LINGUAS=
 
1688
+       for presentlang in $ALL_LINGUAS; do
 
1689
+         useit=no
 
1690
+         if test "%UNSET%" != "${LINGUAS-%UNSET%}"; then
 
1691
+           desiredlanguages="$LINGUAS"
 
1692
+         else
 
1693
+           desiredlanguages="$ALL_LINGUAS"
 
1694
+         fi
 
1695
+         for desiredlang in $desiredlanguages; do
 
1696
+          # Use the presentlang catalog if desiredlang is
 
1697
+           #   a. equal to presentlang, or
 
1698
+           #   b. a variant of presentlang (because in this case,
 
1699
+           #      presentlang can be used as a fallback for messages
 
1700
+           #      which are not translated in the desiredlang catalog).
 
1701
+           case "$desiredlang" in
 
1702
+             "$presentlang"*) useit=yes;;
 
1703
+           esac
 
1704
+         done
 
1705
+         if test $useit = yes; then
 
1706
+           NEW_LINGUAS="$NEW_LINGUAS $presentlang"
 
1707
+         fi
 
1708
+       done
 
1709
+       LINGUAS=$NEW_LINGUAS
 
1710
+       AC_MSG_RESULT($LINGUAS)
 
1711
+     fi
 
1712
 
 
1713
-# serial 5
 
1714
+     dnl Construct list of names of catalog files to be constructed.
 
1715
+     if test -n "$LINGUAS"; then
 
1716
+       for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done
 
1717
+     fi
 
1718
+   fi
 
1719
 
 
1720
-# AM_SANITY_CHECK
 
1721
-# ---------------
 
1722
-AC_DEFUN([AM_SANITY_CHECK],
 
1723
-[AC_MSG_CHECKING([whether build environment is sane])
 
1724
-# Just in case
 
1725
-sleep 1
 
1726
-echo timestamp > conftest.file
 
1727
-# Reject unsafe characters in $srcdir or the absolute working directory
 
1728
-# name.  Accept space and tab only in the latter.
 
1729
-am_lf='
 
1730
-'
 
1731
-case `pwd` in
 
1732
-  *[[\\\"\#\$\&\'\`$am_lf]]*)
 
1733
-    AC_MSG_ERROR([unsafe absolute working directory name]);;
 
1734
-esac
 
1735
-case $srcdir in
 
1736
-  *[[\\\"\#\$\&\'\`$am_lf\ \   ]]*)
 
1737
-    AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);;
 
1738
-esac
 
1739
+   dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly
 
1740
+   dnl find the mkinstalldirs script in another subdir but ($top_srcdir).
 
1741
+   dnl Try to locate is.
 
1742
+   MKINSTALLDIRS=
 
1743
+   if test -n "$ac_aux_dir"; then
 
1744
+     MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs"
 
1745
+   fi
 
1746
+   if test -z "$MKINSTALLDIRS"; then
 
1747
+     MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs"
 
1748
+   fi
 
1749
+   AC_SUBST(MKINSTALLDIRS)
 
1750
 
 
1751
-# Do `set' in a subshell so we don't clobber the current shell's
 
1752
-# arguments.  Must try -L first in case configure is actually a
 
1753
-# symlink; some systems play weird games with the mod time of symlinks
 
1754
-# (eg FreeBSD returns the mod time of the symlink's containing
 
1755
-# directory).
 
1756
-if (
 
1757
-   set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
 
1758
-   if test "$[*]" = "X"; then
 
1759
-      # -L didn't work.
 
1760
-      set X `ls -t "$srcdir/configure" conftest.file`
 
1761
+   dnl Generate list of files to be processed by xgettext which will
 
1762
+   dnl be included in po/Makefile.
 
1763
+   test -d po || mkdir po
 
1764
+   if test "x$srcdir" != "x."; then
 
1765
+     if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then
 
1766
+       posrcprefix="$srcdir/"
 
1767
+     else
 
1768
+       posrcprefix="../$srcdir/"
 
1769
+     fi
 
1770
+   else
 
1771
+     posrcprefix="../"
 
1772
    fi
 
1773
-   rm -f conftest.file
 
1774
-   if test "$[*]" != "X $srcdir/configure conftest.file" \
 
1775
-      && test "$[*]" != "X conftest.file $srcdir/configure"; then
 
1776
+   rm -f po/POTFILES
 
1777
+   sed -e "/^#/d" -e "/^\$/d" -e "s,.*,        $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \
 
1778
+       < $srcdir/po/POTFILES.in > po/POTFILES
 
1779
+  ])
 
1780
+
 
1781
+# AM_GLIB_DEFINE_LOCALEDIR(VARIABLE)
 
1782
+# -------------------------------
 
1783
+# Define VARIABLE to the location where catalog files will
 
1784
+# be installed by po/Makefile.
 
1785
+glib_DEFUN([GLIB_DEFINE_LOCALEDIR],
 
1786
+[glib_REQUIRE([GLIB_GNU_GETTEXT])dnl
 
1787
+glib_save_prefix="$prefix"
 
1788
+glib_save_exec_prefix="$exec_prefix"
 
1789
+glib_save_datarootdir="$datarootdir"
 
1790
+test "x$prefix" = xNONE && prefix=$ac_default_prefix
 
1791
+test "x$exec_prefix" = xNONE && exec_prefix=$prefix
 
1792
+datarootdir=`eval echo "${datarootdir}"`
 
1793
+if test "x$CATOBJEXT" = "x.mo" ; then
 
1794
+  localedir=`eval echo "${libdir}/locale"`
 
1795
+else
 
1796
+  localedir=`eval echo "${datadir}/locale"`
 
1797
+fi
 
1798
+prefix="$glib_save_prefix"
 
1799
+exec_prefix="$glib_save_exec_prefix"
 
1800
+datarootdir="$glib_save_datarootdir"
 
1801
+AC_DEFINE_UNQUOTED($1, "$localedir",
 
1802
+  [Define the location where the catalogs will be installed])
 
1803
+])
 
1804
+
 
1805
+dnl
 
1806
+dnl Now the definitions that aclocal will find
 
1807
+dnl
 
1808
+ifdef(glib_configure_ac,[],[
 
1809
+AC_DEFUN([AM_GLIB_GNU_GETTEXT],[GLIB_GNU_GETTEXT($@)])
 
1810
+AC_DEFUN([AM_GLIB_DEFINE_LOCALEDIR],[GLIB_DEFINE_LOCALEDIR($@)])
 
1811
+])dnl
 
1812
+
 
1813
+# GLIB_RUN_PROG(PROGRAM, TEST-FILE, [ACTION-IF-PASS], [ACTION-IF-FAIL])
 
1814
+# 
 
1815
+# Create a temporary file with TEST-FILE as its contents and pass the
 
1816
+# file name to PROGRAM.  Perform ACTION-IF-PASS if PROGRAM exits with
 
1817
+# 0 and perform ACTION-IF-FAIL for any other exit status.
 
1818
+AC_DEFUN([GLIB_RUN_PROG],
 
1819
+[cat >conftest.foo <<_ACEOF
 
1820
+$2
 
1821
+_ACEOF
 
1822
+if AC_RUN_LOG([$1 conftest.foo]); then
 
1823
+  m4_ifval([$3], [$3], [:])
 
1824
+m4_ifvaln([$4], [else $4])dnl
 
1825
+echo "$as_me: failed input was:" >&AS_MESSAGE_LOG_FD
 
1826
+sed 's/^/| /' conftest.foo >&AS_MESSAGE_LOG_FD
 
1827
+fi])
 
1828
 
 
1829
-      # If neither matched, then we have a broken ls.  This can happen
 
1830
-      # if, for instance, CONFIG_SHELL is bash and it inherits a
 
1831
-      # broken ls alias from the environment.  This has actually
 
1832
-      # happened.  Such a system could not be considered "sane".
 
1833
-      AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
 
1834
-alias in your environment])
 
1835
-   fi
 
1836
 
 
1837
-   test "$[2]" = conftest.file
 
1838
-   )
 
1839
-then
 
1840
-   # Ok.
 
1841
-   :
 
1842
-else
 
1843
-   AC_MSG_ERROR([newly created file is older than distributed files!
 
1844
-Check your system clock])
 
1845
-fi
 
1846
-AC_MSG_RESULT(yes)])
 
1847
+# gnome-common.m4
 
1848
+# 
 
1849
 
 
1850
-# Copyright (C) 2009  Free Software Foundation, Inc.
 
1851
-#
 
1852
-# This file is free software; the Free Software Foundation
 
1853
-# gives unlimited permission to copy and/or distribute it,
 
1854
-# with or without modifications, as long as this notice is preserved.
 
1855
+dnl GNOME_COMMON_INIT
 
1856
 
 
1857
-# serial 1
 
1858
+AC_DEFUN([GNOME_COMMON_INIT],
 
1859
+[
 
1860
+  dnl this macro should come after AC_CONFIG_MACRO_DIR
 
1861
+  AC_BEFORE([AC_CONFIG_MACRO_DIR], [$0])
 
1862
 
 
1863
-# AM_SILENT_RULES([DEFAULT])
 
1864
-# --------------------------
 
1865
-# Enable less verbose build rules; with the default set to DEFAULT
 
1866
-# (`yes' being less verbose, `no' or empty being verbose).
 
1867
-AC_DEFUN([AM_SILENT_RULES],
 
1868
-[AC_ARG_ENABLE([silent-rules],
 
1869
-[  --enable-silent-rules          less verbose build output (undo: `make V=1')
 
1870
-  --disable-silent-rules         verbose build output (undo: `make V=0')])
 
1871
-case $enable_silent_rules in
 
1872
-yes) AM_DEFAULT_VERBOSITY=0;;
 
1873
-no)  AM_DEFAULT_VERBOSITY=1;;
 
1874
-*)   AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
 
1875
-esac
 
1876
-AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
 
1877
-AM_BACKSLASH='\'
 
1878
-AC_SUBST([AM_BACKSLASH])dnl
 
1879
-_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
 
1880
+  dnl ensure that when the Automake generated makefile calls aclocal,
 
1881
+  dnl it honours the $ACLOCAL_FLAGS environment variable
 
1882
+  ACLOCAL_AMFLAGS="\${ACLOCAL_FLAGS}"
 
1883
+  if test -n "$ac_macro_dir"; then
 
1884
+    ACLOCAL_AMFLAGS="-I $ac_macro_dir $ACLOCAL_AMFLAGS"
 
1885
+  fi
 
1886
+
 
1887
+  AC_SUBST([ACLOCAL_AMFLAGS])
 
1888
 ])
 
1889
 
 
1890
-# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
 
1891
-#
 
1892
-# This file is free software; the Free Software Foundation
 
1893
-# gives unlimited permission to copy and/or distribute it,
 
1894
-# with or without modifications, as long as this notice is preserved.
 
1895
+AC_DEFUN([GNOME_DEBUG_CHECK],
 
1896
+[
 
1897
+       AC_ARG_ENABLE([debug],
 
1898
+                      AC_HELP_STRING([--enable-debug],
 
1899
+                                     [turn on debugging]),,
 
1900
+                      [enable_debug=no])
 
1901
 
 
1902
-# AM_PROG_INSTALL_STRIP
 
1903
-# ---------------------
 
1904
-# One issue with vendor `install' (even GNU) is that you can't
 
1905
-# specify the program used to strip binaries.  This is especially
 
1906
-# annoying in cross-compiling environments, where the build's strip
 
1907
-# is unlikely to handle the host's binaries.
 
1908
-# Fortunately install-sh will honor a STRIPPROG variable, so we
 
1909
-# always use install-sh in `make install-strip', and initialize
 
1910
-# STRIPPROG with the value of the STRIP variable (set by the user).
 
1911
-AC_DEFUN([AM_PROG_INSTALL_STRIP],
 
1912
-[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
 
1913
-# Installed binaries are usually stripped using `strip' when the user
 
1914
-# run `make install-strip'.  However `strip' might not be the right
 
1915
-# tool to use in cross-compilation environments, therefore Automake
 
1916
-# will honor the `STRIP' environment variable to overrule this program.
 
1917
-dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
 
1918
-if test "$cross_compiling" != no; then
 
1919
-  AC_CHECK_TOOL([STRIP], [strip], :)
 
1920
-fi
 
1921
-INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
 
1922
-AC_SUBST([INSTALL_STRIP_PROGRAM])])
 
1923
+       if test x$enable_debug = xyes ; then
 
1924
+           AC_DEFINE(GNOME_ENABLE_DEBUG, 1,
 
1925
+               [Enable additional debugging at the expense of performance and size])
 
1926
+       fi
 
1927
+])
 
1928
 
 
1929
-# Copyright (C) 2006, 2008  Free Software Foundation, Inc.
 
1930
-#
 
1931
-# This file is free software; the Free Software Foundation
 
1932
-# gives unlimited permission to copy and/or distribute it,
 
1933
-# with or without modifications, as long as this notice is preserved.
 
1934
+dnl GNOME_MAINTAINER_MODE_DEFINES ()
 
1935
+dnl define DISABLE_DEPRECATED
 
1936
+dnl
 
1937
+AC_DEFUN([GNOME_MAINTAINER_MODE_DEFINES],
 
1938
+[
 
1939
+       AC_REQUIRE([AM_MAINTAINER_MODE])
 
1940
 
 
1941
-# serial 2
 
1942
+       DISABLE_DEPRECATED=""
 
1943
+       if test $USE_MAINTAINER_MODE = yes; then
 
1944
+               DOMAINS="G ATK PANGO GDK GDK_PIXBUF GTK GCONF BONOBO BONOBO_UI GNOME LIBGLADE VTE GNOME_VFS WNCK LIBSOUP"
 
1945
+               for DOMAIN in $DOMAINS; do
 
1946
+                      DISABLE_DEPRECATED="$DISABLE_DEPRECATED -D${DOMAIN}_DISABLE_DEPRECATED -D${DOMAIN}_DISABLE_SINGLE_INCLUDES"
 
1947
+               done
 
1948
+       fi
 
1949
 
 
1950
-# _AM_SUBST_NOTMAKE(VARIABLE)
 
1951
-# ---------------------------
 
1952
-# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
 
1953
-# This macro is traced by Automake.
 
1954
-AC_DEFUN([_AM_SUBST_NOTMAKE])
 
1955
+       AC_SUBST(DISABLE_DEPRECATED)
 
1956
+])
 
1957
 
 
1958
-# AM_SUBST_NOTMAKE(VARIABLE)
 
1959
-# ---------------------------
 
1960
-# Public sister of _AM_SUBST_NOTMAKE.
 
1961
-AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
 
1962
+dnl GNOME_COMPILE_WARNINGS
 
1963
+dnl Turn on many useful compiler warnings
 
1964
+dnl For now, only works on GCC
 
1965
+AC_DEFUN([GNOME_COMPILE_WARNINGS],[
 
1966
+    dnl ******************************
 
1967
+    dnl More compiler warnings
 
1968
+    dnl ******************************
 
1969
 
 
1970
-# Check how to create a tarball.                            -*- Autoconf -*-
 
1971
+    AC_ARG_ENABLE(compile-warnings, 
 
1972
+                  AC_HELP_STRING([--enable-compile-warnings=@<:@no/minimum/yes/maximum/error@:>@],
 
1973
+                                 [Turn on compiler warnings]),,
 
1974
+                  [enable_compile_warnings="m4_default([$1],[yes])"])
 
1975
 
 
1976
-# Copyright (C) 2004, 2005  Free Software Foundation, Inc.
 
1977
-#
 
1978
-# This file is free software; the Free Software Foundation
 
1979
-# gives unlimited permission to copy and/or distribute it,
 
1980
-# with or without modifications, as long as this notice is preserved.
 
1981
+    warnCFLAGS=
 
1982
+    if test "x$GCC" != xyes; then
 
1983
+       enable_compile_warnings=no
 
1984
+    fi
 
1985
 
 
1986
-# serial 2
 
1987
+    warning_flags=
 
1988
+    realsave_CFLAGS="$CFLAGS"
 
1989
 
 
1990
-# _AM_PROG_TAR(FORMAT)
 
1991
-# --------------------
 
1992
-# Check how to create a tarball in format FORMAT.
 
1993
-# FORMAT should be one of `v7', `ustar', or `pax'.
 
1994
-#
 
1995
-# Substitute a variable $(am__tar) that is a command
 
1996
-# writing to stdout a FORMAT-tarball containing the directory
 
1997
-# $tardir.
 
1998
-#     tardir=directory && $(am__tar) > result.tar
 
1999
-#
 
2000
-# Substitute a variable $(am__untar) that extract such
 
2001
-# a tarball read from stdin.
 
2002
-#     $(am__untar) < result.tar
 
2003
-AC_DEFUN([_AM_PROG_TAR],
 
2004
-[# Always define AMTAR for backward compatibility.
 
2005
-AM_MISSING_PROG([AMTAR], [tar])
 
2006
-m4_if([$1], [v7],
 
2007
-     [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
 
2008
-     [m4_case([$1], [ustar],, [pax],,
 
2009
-              [m4_fatal([Unknown tar format])])
 
2010
-AC_MSG_CHECKING([how to create a $1 tar archive])
 
2011
-# Loop over all known methods to create a tar archive until one works.
 
2012
-_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
 
2013
-_am_tools=${am_cv_prog_tar_$1-$_am_tools}
 
2014
-# Do not fold the above two line into one, because Tru64 sh and
 
2015
-# Solaris sh will not grok spaces in the rhs of `-'.
 
2016
-for _am_tool in $_am_tools
 
2017
-do
 
2018
-  case $_am_tool in
 
2019
-  gnutar)
 
2020
-    for _am_tar in tar gnutar gtar;
 
2021
-    do
 
2022
-      AM_RUN_LOG([$_am_tar --version]) && break
 
2023
-    done
 
2024
-    am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
 
2025
-    am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
 
2026
-    am__untar="$_am_tar -xf -"
 
2027
-    ;;
 
2028
-  plaintar)
 
2029
-    # Must skip GNU tar: if it does not support --format= it doesn't create
 
2030
-    # ustar tarball either.
 
2031
-    (tar --version) >/dev/null 2>&1 && continue
 
2032
-    am__tar='tar chf - "$$tardir"'
 
2033
-    am__tar_='tar chf - "$tardir"'
 
2034
-    am__untar='tar xf -'
 
2035
-    ;;
 
2036
-  pax)
 
2037
-    am__tar='pax -L -x $1 -w "$$tardir"'
 
2038
-    am__tar_='pax -L -x $1 -w "$tardir"'
 
2039
-    am__untar='pax -r'
 
2040
-    ;;
 
2041
-  cpio)
 
2042
-    am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
 
2043
-    am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
 
2044
-    am__untar='cpio -i -H $1 -d'
 
2045
-    ;;
 
2046
-  none)
 
2047
-    am__tar=false
 
2048
-    am__tar_=false
 
2049
-    am__untar=false
 
2050
-    ;;
 
2051
-  esac
 
2052
+    case "$enable_compile_warnings" in
 
2053
+    no)
 
2054
+       warning_flags=
 
2055
+       ;;
 
2056
+    minimum)
 
2057
+       warning_flags="-Wall"
 
2058
+       ;;
 
2059
+    yes)
 
2060
+       warning_flags="-Wall -Wmissing-prototypes"
 
2061
+       ;;
 
2062
+    maximum|error)
 
2063
+       warning_flags="-Wall -Wmissing-prototypes -Wnested-externs -Wpointer-arith"
 
2064
+       CFLAGS="$warning_flags $CFLAGS"
 
2065
+       for option in -Wno-sign-compare; do
 
2066
+               SAVE_CFLAGS="$CFLAGS"
 
2067
+               CFLAGS="$CFLAGS $option"
 
2068
+               AC_MSG_CHECKING([whether gcc understands $option])
 
2069
+               AC_TRY_COMPILE([], [],
 
2070
+                       has_option=yes,
 
2071
+                       has_option=no,)
 
2072
+               CFLAGS="$SAVE_CFLAGS"
 
2073
+               AC_MSG_RESULT($has_option)
 
2074
+               if test $has_option = yes; then
 
2075
+                 warning_flags="$warning_flags $option"
 
2076
+               fi
 
2077
+               unset has_option
 
2078
+               unset SAVE_CFLAGS
 
2079
+       done
 
2080
+       unset option
 
2081
+       if test "$enable_compile_warnings" = "error" ; then
 
2082
+           warning_flags="$warning_flags -Werror"
 
2083
+       fi
 
2084
+       ;;
 
2085
+    *)
 
2086
+       AC_MSG_ERROR(Unknown argument '$enable_compile_warnings' to --enable-compile-warnings)
 
2087
+       ;;
 
2088
+    esac
 
2089
+    CFLAGS="$realsave_CFLAGS"
 
2090
+    AC_MSG_CHECKING(what warning flags to pass to the C compiler)
 
2091
+    AC_MSG_RESULT($warning_flags)
 
2092
+
 
2093
+    AC_ARG_ENABLE(iso-c,
 
2094
+                  AC_HELP_STRING([--enable-iso-c],
 
2095
+                                 [Try to warn if code is not ISO C ]),,
 
2096
+                  [enable_iso_c=no])
 
2097
 
 
2098
-  # If the value was cached, stop now.  We just wanted to have am__tar
 
2099
-  # and am__untar set.
 
2100
-  test -n "${am_cv_prog_tar_$1}" && break
 
2101
+    AC_MSG_CHECKING(what language compliance flags to pass to the C compiler)
 
2102
+    complCFLAGS=
 
2103
+    if test "x$enable_iso_c" != "xno"; then
 
2104
+       if test "x$GCC" = "xyes"; then
 
2105
+       case " $CFLAGS " in
 
2106
+           *[\ \       ]-ansi[\ \      ]*) ;;
 
2107
+           *) complCFLAGS="$complCFLAGS -ansi" ;;
 
2108
+       esac
 
2109
+       case " $CFLAGS " in
 
2110
+           *[\ \       ]-pedantic[\ \  ]*) ;;
 
2111
+           *) complCFLAGS="$complCFLAGS -pedantic" ;;
 
2112
+       esac
 
2113
+       fi
 
2114
+    fi
 
2115
+    AC_MSG_RESULT($complCFLAGS)
 
2116
 
 
2117
-  # tar/untar a dummy directory, and stop if the command works
 
2118
-  rm -rf conftest.dir
 
2119
-  mkdir conftest.dir
 
2120
-  echo GrepMe > conftest.dir/file
 
2121
-  AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
 
2122
-  rm -rf conftest.dir
 
2123
-  if test -s conftest.tar; then
 
2124
-    AM_RUN_LOG([$am__untar <conftest.tar])
 
2125
-    grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
 
2126
+    WARN_CFLAGS="$warning_flags $complCFLAGS"
 
2127
+    AC_SUBST(WARN_CFLAGS)
 
2128
+])
 
2129
+
 
2130
+dnl For C++, do basically the same thing.
 
2131
+
 
2132
+AC_DEFUN([GNOME_CXX_WARNINGS],[
 
2133
+  AC_ARG_ENABLE(cxx-warnings,
 
2134
+                AC_HELP_STRING([--enable-cxx-warnings=@<:@no/minimum/yes@:>@]
 
2135
+                               [Turn on compiler warnings.]),,
 
2136
+                [enable_cxx_warnings="m4_default([$1],[minimum])"])
 
2137
+
 
2138
+  AC_MSG_CHECKING(what warning flags to pass to the C++ compiler)
 
2139
+  warnCXXFLAGS=
 
2140
+  if test "x$GXX" != xyes; then
 
2141
+    enable_cxx_warnings=no
 
2142
   fi
 
2143
-done
 
2144
-rm -rf conftest.dir
 
2145
+  if test "x$enable_cxx_warnings" != "xno"; then
 
2146
+    if test "x$GXX" = "xyes"; then
 
2147
+      case " $CXXFLAGS " in
 
2148
+      *[\ \    ]-Wall[\ \      ]*) ;;
 
2149
+      *) warnCXXFLAGS="-Wall -Wno-unused" ;;
 
2150
+      esac
 
2151
 
 
2152
-AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
 
2153
-AC_MSG_RESULT([$am_cv_prog_tar_$1])])
 
2154
-AC_SUBST([am__tar])
 
2155
-AC_SUBST([am__untar])
 
2156
-]) # _AM_PROG_TAR
 
2157
+      ## -W is not all that useful.  And it cannot be controlled
 
2158
+      ## with individual -Wno-xxx flags, unlike -Wall
 
2159
+      if test "x$enable_cxx_warnings" = "xyes"; then
 
2160
+       warnCXXFLAGS="$warnCXXFLAGS -Wshadow -Woverloaded-virtual"
 
2161
+      fi
 
2162
+    fi
 
2163
+  fi
 
2164
+  AC_MSG_RESULT($warnCXXFLAGS)
 
2165
+
 
2166
+   AC_ARG_ENABLE(iso-cxx,
 
2167
+                 AC_HELP_STRING([--enable-iso-cxx],
 
2168
+                                [Try to warn if code is not ISO C++ ]),,
 
2169
+                 [enable_iso_cxx=no])
 
2170
+
 
2171
+   AC_MSG_CHECKING(what language compliance flags to pass to the C++ compiler)
 
2172
+   complCXXFLAGS=
 
2173
+   if test "x$enable_iso_cxx" != "xno"; then
 
2174
+     if test "x$GXX" = "xyes"; then
 
2175
+      case " $CXXFLAGS " in
 
2176
+      *[\ \    ]-ansi[\ \      ]*) ;;
 
2177
+      *) complCXXFLAGS="$complCXXFLAGS -ansi" ;;
 
2178
+      esac
 
2179
 
 
2180
-# nls.m4 serial 3 (gettext-0.15)
 
2181
-dnl Copyright (C) 1995-2003, 2005-2006 Free Software Foundation, Inc.
 
2182
+      case " $CXXFLAGS " in
 
2183
+      *[\ \    ]-pedantic[\ \  ]*) ;;
 
2184
+      *) complCXXFLAGS="$complCXXFLAGS -pedantic" ;;
 
2185
+      esac
 
2186
+     fi
 
2187
+   fi
 
2188
+  AC_MSG_RESULT($complCXXFLAGS)
 
2189
+
 
2190
+  WARN_CXXFLAGS="$CXXFLAGS $warnCXXFLAGS $complCXXFLAGS"
 
2191
+  AC_SUBST(WARN_CXXFLAGS)
 
2192
+])
 
2193
+
 
2194
+# nls.m4 serial 5 (gettext-0.18)
 
2195
+dnl Copyright (C) 1995-2003, 2005-2006, 2008-2010 Free Software Foundation,
 
2196
+dnl Inc.
 
2197
 dnl This file is free software; the Free Software Foundation
 
2198
 dnl gives unlimited permission to copy and/or distribute it,
 
2199
 dnl with or without modifications, as long as this notice is preserved.
 
2200
@@ -1287,17 +922,17 @@ dnl Authors:
 
2201
 dnl   Ulrich Drepper <drepper@cygnus.com>, 1995-2000.
 
2202
 dnl   Bruno Haible <haible@clisp.cons.org>, 2000-2003.
 
2203
 
 
2204
-AC_PREREQ(2.50)
 
2205
+AC_PREREQ([2.50])
 
2206
 
 
2207
 AC_DEFUN([AM_NLS],
 
2208
 [
 
2209
   AC_MSG_CHECKING([whether NLS is requested])
 
2210
   dnl Default is enabled NLS
 
2211
-  AC_ARG_ENABLE(nls,
 
2212
+  AC_ARG_ENABLE([nls],
 
2213
     [  --disable-nls           do not use Native Language Support],
 
2214
     USE_NLS=$enableval, USE_NLS=yes)
 
2215
-  AC_MSG_RESULT($USE_NLS)
 
2216
-  AC_SUBST(USE_NLS)
 
2217
+  AC_MSG_RESULT([$USE_NLS])
 
2218
+  AC_SUBST([USE_NLS])
 
2219
 ])
 
2220
 
 
2221
 # pkg.m4 - Macros to locate and utilise pkg-config.            -*- Autoconf -*-
 
2222
@@ -1437,7 +1072,7 @@ $$1_PKG_ERRORS
 
2223
 Consider adjusting the PKG_CONFIG_PATH environment variable if you
 
2224
 installed software in a non-standard prefix.
 
2225
 
 
2226
-_PKG_TEXT])[]dnl
 
2227
+_PKG_TEXT])dnl
 
2228
         ])
 
2229
 elif test $pkg_failed = untried; then
 
2230
        AC_MSG_RESULT([no])
 
2231
@@ -1448,903 +1083,1264 @@ path to pkg-config.
 
2232
 
 
2233
 _PKG_TEXT
 
2234
 
 
2235
-To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl
 
2236
-        ])
 
2237
-else
 
2238
-       $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
 
2239
-       $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
 
2240
-        AC_MSG_RESULT([yes])
 
2241
-       $3
 
2242
-fi[]dnl
 
2243
-])# PKG_CHECK_MODULES
 
2244
+To get pkg-config, see <http://pkg-config.freedesktop.org/>.])dnl
 
2245
+        ])
 
2246
+else
 
2247
+       $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
 
2248
+       $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
 
2249
+        AC_MSG_RESULT([yes])
 
2250
+       $3
 
2251
+fi[]dnl
 
2252
+])# PKG_CHECK_MODULES
 
2253
+
 
2254
+# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008  Free Software Foundation, Inc.
 
2255
+#
 
2256
+# This file is free software; the Free Software Foundation
 
2257
+# gives unlimited permission to copy and/or distribute it,
 
2258
+# with or without modifications, as long as this notice is preserved.
 
2259
+
 
2260
+# AM_AUTOMAKE_VERSION(VERSION)
 
2261
+# ----------------------------
 
2262
+# Automake X.Y traces this macro to ensure aclocal.m4 has been
 
2263
+# generated from the m4 files accompanying Automake X.Y.
 
2264
+# (This private macro should not be called outside this file.)
 
2265
+AC_DEFUN([AM_AUTOMAKE_VERSION],
 
2266
+[am__api_version='1.11'
 
2267
+dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
 
2268
+dnl require some minimum version.  Point them to the right macro.
 
2269
+m4_if([$1], [1.11.1], [],
 
2270
+      [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
 
2271
+])
 
2272
+
 
2273
+# _AM_AUTOCONF_VERSION(VERSION)
 
2274
+# -----------------------------
 
2275
+# aclocal traces this macro to find the Autoconf version.
 
2276
+# This is a private macro too.  Using m4_define simplifies
 
2277
+# the logic in aclocal, which can simply ignore this definition.
 
2278
+m4_define([_AM_AUTOCONF_VERSION], [])
 
2279
+
 
2280
+# AM_SET_CURRENT_AUTOMAKE_VERSION
 
2281
+# -------------------------------
 
2282
+# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
 
2283
+# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
 
2284
+AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
 
2285
+[AM_AUTOMAKE_VERSION([1.11.1])dnl
 
2286
+m4_ifndef([AC_AUTOCONF_VERSION],
 
2287
+  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
 
2288
+_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
 
2289
+
 
2290
+# AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
 
2291
+
 
2292
+# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
 
2293
+#
 
2294
+# This file is free software; the Free Software Foundation
 
2295
+# gives unlimited permission to copy and/or distribute it,
 
2296
+# with or without modifications, as long as this notice is preserved.
 
2297
+
 
2298
+# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
 
2299
+# $ac_aux_dir to `$srcdir/foo'.  In other projects, it is set to
 
2300
+# `$srcdir', `$srcdir/..', or `$srcdir/../..'.
 
2301
+#
 
2302
+# Of course, Automake must honor this variable whenever it calls a
 
2303
+# tool from the auxiliary directory.  The problem is that $srcdir (and
 
2304
+# therefore $ac_aux_dir as well) can be either absolute or relative,
 
2305
+# depending on how configure is run.  This is pretty annoying, since
 
2306
+# it makes $ac_aux_dir quite unusable in subdirectories: in the top
 
2307
+# source directory, any form will work fine, but in subdirectories a
 
2308
+# relative path needs to be adjusted first.
 
2309
+#
 
2310
+# $ac_aux_dir/missing
 
2311
+#    fails when called from a subdirectory if $ac_aux_dir is relative
 
2312
+# $top_srcdir/$ac_aux_dir/missing
 
2313
+#    fails if $ac_aux_dir is absolute,
 
2314
+#    fails when called from a subdirectory in a VPATH build with
 
2315
+#          a relative $ac_aux_dir
 
2316
+#
 
2317
+# The reason of the latter failure is that $top_srcdir and $ac_aux_dir
 
2318
+# are both prefixed by $srcdir.  In an in-source build this is usually
 
2319
+# harmless because $srcdir is `.', but things will broke when you
 
2320
+# start a VPATH build or use an absolute $srcdir.
 
2321
+#
 
2322
+# So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
 
2323
+# iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
 
2324
+#   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
 
2325
+# and then we would define $MISSING as
 
2326
+#   MISSING="\${SHELL} $am_aux_dir/missing"
 
2327
+# This will work as long as MISSING is not called from configure, because
 
2328
+# unfortunately $(top_srcdir) has no meaning in configure.
 
2329
+# However there are other variables, like CC, which are often used in
 
2330
+# configure, and could therefore not use this "fixed" $ac_aux_dir.
 
2331
+#
 
2332
+# Another solution, used here, is to always expand $ac_aux_dir to an
 
2333
+# absolute PATH.  The drawback is that using absolute paths prevent a
 
2334
+# configured tree to be moved without reconfiguration.
 
2335
+
 
2336
+AC_DEFUN([AM_AUX_DIR_EXPAND],
 
2337
+[dnl Rely on autoconf to set up CDPATH properly.
 
2338
+AC_PREREQ([2.50])dnl
 
2339
+# expand $ac_aux_dir to an absolute path
 
2340
+am_aux_dir=`cd $ac_aux_dir && pwd`
 
2341
+])
 
2342
+
 
2343
+# AM_CONDITIONAL                                            -*- Autoconf -*-
 
2344
+
 
2345
+# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008
 
2346
+# Free Software Foundation, Inc.
 
2347
+#
 
2348
+# This file is free software; the Free Software Foundation
 
2349
+# gives unlimited permission to copy and/or distribute it,
 
2350
+# with or without modifications, as long as this notice is preserved.
 
2351
+
 
2352
+# serial 9
 
2353
+
 
2354
+# AM_CONDITIONAL(NAME, SHELL-CONDITION)
 
2355
+# -------------------------------------
 
2356
+# Define a conditional.
 
2357
+AC_DEFUN([AM_CONDITIONAL],
 
2358
+[AC_PREREQ(2.52)dnl
 
2359
+ ifelse([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
 
2360
+       [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
 
2361
+AC_SUBST([$1_TRUE])dnl
 
2362
+AC_SUBST([$1_FALSE])dnl
 
2363
+_AM_SUBST_NOTMAKE([$1_TRUE])dnl
 
2364
+_AM_SUBST_NOTMAKE([$1_FALSE])dnl
 
2365
+m4_define([_AM_COND_VALUE_$1], [$2])dnl
 
2366
+if $2; then
 
2367
+  $1_TRUE=
 
2368
+  $1_FALSE='#'
 
2369
+else
 
2370
+  $1_TRUE='#'
 
2371
+  $1_FALSE=
 
2372
+fi
 
2373
+AC_CONFIG_COMMANDS_PRE(
 
2374
+[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
 
2375
+  AC_MSG_ERROR([[conditional "$1" was never defined.
 
2376
+Usually this means the macro was only invoked conditionally.]])
 
2377
+fi])])
 
2378
+
 
2379
+# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009
 
2380
+# Free Software Foundation, Inc.
 
2381
+#
 
2382
+# This file is free software; the Free Software Foundation
 
2383
+# gives unlimited permission to copy and/or distribute it,
 
2384
+# with or without modifications, as long as this notice is preserved.
 
2385
+
 
2386
+# serial 10
 
2387
+
 
2388
+# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
 
2389
+# written in clear, in which case automake, when reading aclocal.m4,
 
2390
+# will think it sees a *use*, and therefore will trigger all it's
 
2391
+# C support machinery.  Also note that it means that autoscan, seeing
 
2392
+# CC etc. in the Makefile, will ask for an AC_PROG_CC use...
 
2393
+
 
2394
+
 
2395
+# _AM_DEPENDENCIES(NAME)
 
2396
+# ----------------------
 
2397
+# See how the compiler implements dependency checking.
 
2398
+# NAME is "CC", "CXX", "GCJ", or "OBJC".
 
2399
+# We try a few techniques and use that to set a single cache variable.
 
2400
+#
 
2401
+# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
 
2402
+# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular
 
2403
+# dependency, and given that the user is not expected to run this macro,
 
2404
+# just rely on AC_PROG_CC.
 
2405
+AC_DEFUN([_AM_DEPENDENCIES],
 
2406
+[AC_REQUIRE([AM_SET_DEPDIR])dnl
 
2407
+AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
 
2408
+AC_REQUIRE([AM_MAKE_INCLUDE])dnl
 
2409
+AC_REQUIRE([AM_DEP_TRACK])dnl
 
2410
+
 
2411
+ifelse([$1], CC,   [depcc="$CC"   am_compiler_list=],
 
2412
+       [$1], CXX,  [depcc="$CXX"  am_compiler_list=],
 
2413
+       [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
 
2414
+       [$1], UPC,  [depcc="$UPC"  am_compiler_list=],
 
2415
+       [$1], GCJ,  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],
 
2416
+                   [depcc="$$1"   am_compiler_list=])
 
2417
 
 
2418
-dnl AM_GCONF_SOURCE_2
 
2419
-dnl Defines GCONF_SCHEMA_CONFIG_SOURCE which is where you should install schemas
 
2420
-dnl  (i.e. pass to gconftool-2
 
2421
-dnl Defines GCONF_SCHEMA_FILE_DIR which is a filesystem directory where
 
2422
-dnl  you should install foo.schemas files
 
2423
-dnl
 
2424
+AC_CACHE_CHECK([dependency style of $depcc],
 
2425
+               [am_cv_$1_dependencies_compiler_type],
 
2426
+[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
 
2427
+  # We make a subdir and do the tests there.  Otherwise we can end up
 
2428
+  # making bogus files that we don't know about and never remove.  For
 
2429
+  # instance it was reported that on HP-UX the gcc test will end up
 
2430
+  # making a dummy file named `D' -- because `-MD' means `put the output
 
2431
+  # in D'.
 
2432
+  mkdir conftest.dir
 
2433
+  # Copy depcomp to subdir because otherwise we won't find it if we're
 
2434
+  # using a relative directory.
 
2435
+  cp "$am_depcomp" conftest.dir
 
2436
+  cd conftest.dir
 
2437
+  # We will build objects and dependencies in a subdirectory because
 
2438
+  # it helps to detect inapplicable dependency modes.  For instance
 
2439
+  # both Tru64's cc and ICC support -MD to output dependencies as a
 
2440
+  # side effect of compilation, but ICC will put the dependencies in
 
2441
+  # the current directory while Tru64 will put them in the object
 
2442
+  # directory.
 
2443
+  mkdir sub
 
2444
 
 
2445
-AC_DEFUN([AM_GCONF_SOURCE_2],
 
2446
-[
 
2447
-  if test "x$GCONF_SCHEMA_INSTALL_SOURCE" = "x"; then
 
2448
-    GCONF_SCHEMA_CONFIG_SOURCE=`gconftool-2 --get-default-source`
 
2449
-  else
 
2450
-    GCONF_SCHEMA_CONFIG_SOURCE=$GCONF_SCHEMA_INSTALL_SOURCE
 
2451
+  am_cv_$1_dependencies_compiler_type=none
 
2452
+  if test "$am_compiler_list" = ""; then
 
2453
+     am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
 
2454
   fi
 
2455
+  am__universal=false
 
2456
+  m4_case([$1], [CC],
 
2457
+    [case " $depcc " in #(
 
2458
+     *\ -arch\ *\ -arch\ *) am__universal=true ;;
 
2459
+     esac],
 
2460
+    [CXX],
 
2461
+    [case " $depcc " in #(
 
2462
+     *\ -arch\ *\ -arch\ *) am__universal=true ;;
 
2463
+     esac])
 
2464
 
 
2465
-  AC_ARG_WITH([gconf-source],
 
2466
-             AC_HELP_STRING([--with-gconf-source=sourceaddress],
 
2467
-                            [Config database for installing schema files.]),
 
2468
-             [GCONF_SCHEMA_CONFIG_SOURCE="$withval"],)
 
2469
+  for depmode in $am_compiler_list; do
 
2470
+    # Setup a source with many dependencies, because some compilers
 
2471
+    # like to wrap large dependency lists on column 80 (with \), and
 
2472
+    # we should not choose a depcomp mode which is confused by this.
 
2473
+    #
 
2474
+    # We need to recreate these files for each test, as the compiler may
 
2475
+    # overwrite some of them when testing with obscure command lines.
 
2476
+    # This happens at least with the AIX C compiler.
 
2477
+    : > sub/conftest.c
 
2478
+    for i in 1 2 3 4 5 6; do
 
2479
+      echo '#include "conftst'$i'.h"' >> sub/conftest.c
 
2480
+      # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
 
2481
+      # Solaris 8's {/usr,}/bin/sh.
 
2482
+      touch sub/conftst$i.h
 
2483
+    done
 
2484
+    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
 
2485
 
 
2486
-  AC_SUBST(GCONF_SCHEMA_CONFIG_SOURCE)
 
2487
-  AC_MSG_RESULT([Using config source $GCONF_SCHEMA_CONFIG_SOURCE for schema installation])
 
2488
+    # We check with `-c' and `-o' for the sake of the "dashmstdout"
 
2489
+    # mode.  It turns out that the SunPro C++ compiler does not properly
 
2490
+    # handle `-M -o', and we need to detect this.  Also, some Intel
 
2491
+    # versions had trouble with output in subdirs
 
2492
+    am__obj=sub/conftest.${OBJEXT-o}
 
2493
+    am__minus_obj="-o $am__obj"
 
2494
+    case $depmode in
 
2495
+    gcc)
 
2496
+      # This depmode causes a compiler race in universal mode.
 
2497
+      test "$am__universal" = false || continue
 
2498
+      ;;
 
2499
+    nosideeffect)
 
2500
+      # after this tag, mechanisms are not by side-effect, so they'll
 
2501
+      # only be used when explicitly requested
 
2502
+      if test "x$enable_dependency_tracking" = xyes; then
 
2503
+       continue
 
2504
+      else
 
2505
+       break
 
2506
+      fi
 
2507
+      ;;
 
2508
+    msvisualcpp | msvcmsys)
 
2509
+      # This compiler won't grok `-c -o', but also, the minuso test has
 
2510
+      # not run yet.  These depmodes are late enough in the game, and
 
2511
+      # so weak that their functioning should not be impacted.
 
2512
+      am__obj=conftest.${OBJEXT-o}
 
2513
+      am__minus_obj=
 
2514
+      ;;
 
2515
+    none) break ;;
 
2516
+    esac
 
2517
+    if depmode=$depmode \
 
2518
+       source=sub/conftest.c object=$am__obj \
 
2519
+       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
 
2520
+       $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
 
2521
+         >/dev/null 2>conftest.err &&
 
2522
+       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
 
2523
+       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
 
2524
+       grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
 
2525
+       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
 
2526
+      # icc doesn't choke on unknown options, it will just issue warnings
 
2527
+      # or remarks (even with -Werror).  So we grep stderr for any message
 
2528
+      # that says an option was ignored or not supported.
 
2529
+      # When given -MP, icc 7.0 and 7.1 complain thusly:
 
2530
+      #   icc: Command line warning: ignoring option '-M'; no argument required
 
2531
+      # The diagnosis changed in icc 8.0:
 
2532
+      #   icc: Command line remark: option '-MP' not supported
 
2533
+      if (grep 'ignoring option' conftest.err ||
 
2534
+          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
 
2535
+        am_cv_$1_dependencies_compiler_type=$depmode
 
2536
+        break
 
2537
+      fi
 
2538
+    fi
 
2539
+  done
 
2540
 
 
2541
-  if test "x$GCONF_SCHEMA_FILE_DIR" = "x"; then
 
2542
-    GCONF_SCHEMA_FILE_DIR='$(sysconfdir)/gconf/schemas'
 
2543
-  fi
 
2544
+  cd ..
 
2545
+  rm -rf conftest.dir
 
2546
+else
 
2547
+  am_cv_$1_dependencies_compiler_type=none
 
2548
+fi
 
2549
+])
 
2550
+AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
 
2551
+AM_CONDITIONAL([am__fastdep$1], [
 
2552
+  test "x$enable_dependency_tracking" != xno \
 
2553
+  && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
 
2554
+])
 
2555
 
 
2556
-  AC_ARG_WITH([gconf-schema-file-dir],
 
2557
-             AC_HELP_STRING([--with-gconf-schema-file-dir=dir],
 
2558
-                            [Directory for installing schema files.]),
 
2559
-             [GCONF_SCHEMA_FILE_DIR="$withval"],)
 
2560
 
 
2561
-  AC_SUBST(GCONF_SCHEMA_FILE_DIR)
 
2562
-  AC_MSG_RESULT([Using $GCONF_SCHEMA_FILE_DIR as install directory for schema files])
 
2563
+# AM_SET_DEPDIR
 
2564
+# -------------
 
2565
+# Choose a directory name for dependency files.
 
2566
+# This macro is AC_REQUIREd in _AM_DEPENDENCIES
 
2567
+AC_DEFUN([AM_SET_DEPDIR],
 
2568
+[AC_REQUIRE([AM_SET_LEADING_DOT])dnl
 
2569
+AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
 
2570
+])
 
2571
 
 
2572
-  AC_ARG_ENABLE(schemas-install,
 
2573
-       AC_HELP_STRING([--disable-schemas-install],
 
2574
-                      [Disable the schemas installation]),
 
2575
-     [case ${enableval} in
 
2576
-       yes|no) ;;
 
2577
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-schemas-install]) ;;
 
2578
-      esac])
 
2579
-  AM_CONDITIONAL([GCONF_SCHEMAS_INSTALL], [test "$enable_schemas_install" != no])
 
2580
+
 
2581
+# AM_DEP_TRACK
 
2582
+# ------------
 
2583
+AC_DEFUN([AM_DEP_TRACK],
 
2584
+[AC_ARG_ENABLE(dependency-tracking,
 
2585
+[  --disable-dependency-tracking  speeds up one-time build
 
2586
+  --enable-dependency-tracking   do not reject slow dependency extractors])
 
2587
+if test "x$enable_dependency_tracking" != xno; then
 
2588
+  am_depcomp="$ac_aux_dir/depcomp"
 
2589
+  AMDEPBACKSLASH='\'
 
2590
+fi
 
2591
+AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
 
2592
+AC_SUBST([AMDEPBACKSLASH])dnl
 
2593
+_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
 
2594
 ])
 
2595
 
 
2596
-# Configure paths for GLIB
 
2597
-# Owen Taylor     1997-2001
 
2598
+# Generate code to set up dependency tracking.              -*- Autoconf -*-
 
2599
 
 
2600
-dnl AM_PATH_GLIB_2_0([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, MODULES]]]])
 
2601
-dnl Test for GLIB, and define GLIB_CFLAGS and GLIB_LIBS, if gmodule, gobject,
 
2602
-dnl gthread, or gio is specified in MODULES, pass to pkg-config
 
2603
-dnl
 
2604
-AC_DEFUN([AM_PATH_GLIB_2_0],
 
2605
-[dnl 
 
2606
-dnl Get the cflags and libraries from pkg-config
 
2607
-dnl
 
2608
-AC_ARG_ENABLE(glibtest, [  --disable-glibtest      do not try to compile and run a test GLIB program],
 
2609
-                   , enable_glibtest=yes)
 
2610
+# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008
 
2611
+# Free Software Foundation, Inc.
 
2612
+#
 
2613
+# This file is free software; the Free Software Foundation
 
2614
+# gives unlimited permission to copy and/or distribute it,
 
2615
+# with or without modifications, as long as this notice is preserved.
 
2616
 
 
2617
-  pkg_config_args=glib-2.0
 
2618
-  for module in . $4
 
2619
+#serial 5
 
2620
+
 
2621
+# _AM_OUTPUT_DEPENDENCY_COMMANDS
 
2622
+# ------------------------------
 
2623
+AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
 
2624
+[{
 
2625
+  # Autoconf 2.62 quotes --file arguments for eval, but not when files
 
2626
+  # are listed without --file.  Let's play safe and only enable the eval
 
2627
+  # if we detect the quoting.
 
2628
+  case $CONFIG_FILES in
 
2629
+  *\'*) eval set x "$CONFIG_FILES" ;;
 
2630
+  *)   set x $CONFIG_FILES ;;
 
2631
+  esac
 
2632
+  shift
 
2633
+  for mf
 
2634
   do
 
2635
-      case "$module" in
 
2636
-         gmodule) 
 
2637
-             pkg_config_args="$pkg_config_args gmodule-2.0"
 
2638
-         ;;
 
2639
-         gmodule-no-export) 
 
2640
-             pkg_config_args="$pkg_config_args gmodule-no-export-2.0"
 
2641
-         ;;
 
2642
-         gobject) 
 
2643
-             pkg_config_args="$pkg_config_args gobject-2.0"
 
2644
-         ;;
 
2645
-         gthread) 
 
2646
-             pkg_config_args="$pkg_config_args gthread-2.0"
 
2647
-         ;;
 
2648
-         gio*) 
 
2649
-             pkg_config_args="$pkg_config_args $module-2.0"
 
2650
-         ;;
 
2651
-      esac
 
2652
+    # Strip MF so we end up with the name of the file.
 
2653
+    mf=`echo "$mf" | sed -e 's/:.*$//'`
 
2654
+    # Check whether this is an Automake generated Makefile or not.
 
2655
+    # We used to match only the files named `Makefile.in', but
 
2656
+    # some people rename them; so instead we look at the file content.
 
2657
+    # Grep'ing the first line is not enough: some people post-process
 
2658
+    # each Makefile.in and add a new line on top of each file to say so.
 
2659
+    # Grep'ing the whole file is not good either: AIX grep has a line
 
2660
+    # limit of 2048, but all sed's we know have understand at least 4000.
 
2661
+    if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
 
2662
+      dirpart=`AS_DIRNAME("$mf")`
 
2663
+    else
 
2664
+      continue
 
2665
+    fi
 
2666
+    # Extract the definition of DEPDIR, am__include, and am__quote
 
2667
+    # from the Makefile without running `make'.
 
2668
+    DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
 
2669
+    test -z "$DEPDIR" && continue
 
2670
+    am__include=`sed -n 's/^am__include = //p' < "$mf"`
 
2671
+    test -z "am__include" && continue
 
2672
+    am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
 
2673
+    # When using ansi2knr, U may be empty or an underscore; expand it
 
2674
+    U=`sed -n 's/^U = //p' < "$mf"`
 
2675
+    # Find all dependency output files, they are included files with
 
2676
+    # $(DEPDIR) in their names.  We invoke sed twice because it is the
 
2677
+    # simplest approach to changing $(DEPDIR) to its actual value in the
 
2678
+    # expansion.
 
2679
+    for file in `sed -n "
 
2680
+      s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
 
2681
+        sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
 
2682
+      # Make sure the directory exists.
 
2683
+      test -f "$dirpart/$file" && continue
 
2684
+      fdir=`AS_DIRNAME(["$file"])`
 
2685
+      AS_MKDIR_P([$dirpart/$fdir])
 
2686
+      # echo "creating $dirpart/$file"
 
2687
+      echo '# dummy' > "$dirpart/$file"
 
2688
+    done
 
2689
   done
 
2690
+}
 
2691
+])# _AM_OUTPUT_DEPENDENCY_COMMANDS
 
2692
 
 
2693
-  PKG_PROG_PKG_CONFIG([0.16])
 
2694
-
 
2695
-  no_glib=""
 
2696
-
 
2697
-  if test "x$PKG_CONFIG" = x ; then
 
2698
-    no_glib=yes
 
2699
-    PKG_CONFIG=no
 
2700
-  fi
 
2701
 
 
2702
-  min_glib_version=ifelse([$1], ,2.0.0,$1)
 
2703
-  AC_MSG_CHECKING(for GLIB - version >= $min_glib_version)
 
2704
+# AM_OUTPUT_DEPENDENCY_COMMANDS
 
2705
+# -----------------------------
 
2706
+# This macro should only be invoked once -- use via AC_REQUIRE.
 
2707
+#
 
2708
+# This code is only required when automatic dependency tracking
 
2709
+# is enabled.  FIXME.  This creates each `.P' file that we will
 
2710
+# need in order to bootstrap the dependency handling code.
 
2711
+AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
 
2712
+[AC_CONFIG_COMMANDS([depfiles],
 
2713
+     [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
 
2714
+     [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
 
2715
+])
 
2716
 
 
2717
-  if test x$PKG_CONFIG != xno ; then
 
2718
-    ## don't try to run the test against uninstalled libtool libs
 
2719
-    if $PKG_CONFIG --uninstalled $pkg_config_args; then
 
2720
-         echo "Will use uninstalled version of GLib found in PKG_CONFIG_PATH"
 
2721
-         enable_glibtest=no
 
2722
-    fi
 
2723
+# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005
 
2724
+# Free Software Foundation, Inc.
 
2725
+#
 
2726
+# This file is free software; the Free Software Foundation
 
2727
+# gives unlimited permission to copy and/or distribute it,
 
2728
+# with or without modifications, as long as this notice is preserved.
 
2729
 
 
2730
-    if $PKG_CONFIG --atleast-version $min_glib_version $pkg_config_args; then
 
2731
-         :
 
2732
-    else
 
2733
-         no_glib=yes
 
2734
-    fi
 
2735
-  fi
 
2736
+# serial 8
 
2737
 
 
2738
-  if test x"$no_glib" = x ; then
 
2739
-    GLIB_GENMARSHAL=`$PKG_CONFIG --variable=glib_genmarshal glib-2.0`
 
2740
-    GOBJECT_QUERY=`$PKG_CONFIG --variable=gobject_query glib-2.0`
 
2741
-    GLIB_MKENUMS=`$PKG_CONFIG --variable=glib_mkenums glib-2.0`
 
2742
+# AM_CONFIG_HEADER is obsolete.  It has been replaced by AC_CONFIG_HEADERS.
 
2743
+AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)])
 
2744
 
 
2745
-    GLIB_CFLAGS=`$PKG_CONFIG --cflags $pkg_config_args`
 
2746
-    GLIB_LIBS=`$PKG_CONFIG --libs $pkg_config_args`
 
2747
-    glib_config_major_version=`$PKG_CONFIG --modversion glib-2.0 | \
 
2748
-           sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
 
2749
-    glib_config_minor_version=`$PKG_CONFIG --modversion glib-2.0 | \
 
2750
-           sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
 
2751
-    glib_config_micro_version=`$PKG_CONFIG --modversion glib-2.0 | \
 
2752
-           sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
 
2753
-    if test "x$enable_glibtest" = "xyes" ; then
 
2754
-      ac_save_CFLAGS="$CFLAGS"
 
2755
-      ac_save_LIBS="$LIBS"
 
2756
-      CFLAGS="$CFLAGS $GLIB_CFLAGS"
 
2757
-      LIBS="$GLIB_LIBS $LIBS"
 
2758
-dnl
 
2759
-dnl Now check if the installed GLIB is sufficiently new. (Also sanity
 
2760
-dnl checks the results of pkg-config to some extent)
 
2761
-dnl
 
2762
-      rm -f conf.glibtest
 
2763
-      AC_TRY_RUN([
 
2764
-#include <glib.h>
 
2765
-#include <stdio.h>
 
2766
-#include <stdlib.h>
 
2767
+# Do all the work for Automake.                             -*- Autoconf -*-
 
2768
 
 
2769
-int 
 
2770
-main ()
 
2771
-{
 
2772
-  int major, minor, micro;
 
2773
-  char *tmp_version;
 
2774
+# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
 
2775
+# 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
 
2776
+#
 
2777
+# This file is free software; the Free Software Foundation
 
2778
+# gives unlimited permission to copy and/or distribute it,
 
2779
+# with or without modifications, as long as this notice is preserved.
 
2780
 
 
2781
-  fclose (fopen ("conf.glibtest", "w"));
 
2782
+# serial 16
 
2783
 
 
2784
-  /* HP/UX 9 (%@#!) writes to sscanf strings */
 
2785
-  tmp_version = g_strdup("$min_glib_version");
 
2786
-  if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {
 
2787
-     printf("%s, bad version string\n", "$min_glib_version");
 
2788
-     exit(1);
 
2789
-   }
 
2790
+# This macro actually does too much.  Some checks are only needed if
 
2791
+# your package does certain things.  But this isn't really a big deal.
 
2792
 
 
2793
-  if ((glib_major_version != $glib_config_major_version) ||
 
2794
-      (glib_minor_version != $glib_config_minor_version) ||
 
2795
-      (glib_micro_version != $glib_config_micro_version))
 
2796
-    {
 
2797
-      printf("\n*** 'pkg-config --modversion glib-2.0' returned %d.%d.%d, but GLIB (%d.%d.%d)\n", 
 
2798
-             $glib_config_major_version, $glib_config_minor_version, $glib_config_micro_version,
 
2799
-             glib_major_version, glib_minor_version, glib_micro_version);
 
2800
-      printf ("*** was found! If pkg-config was correct, then it is best\n");
 
2801
-      printf ("*** to remove the old version of GLib. You may also be able to fix the error\n");
 
2802
-      printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n");
 
2803
-      printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n");
 
2804
-      printf("*** required on your system.\n");
 
2805
-      printf("*** If pkg-config was wrong, set the environment variable PKG_CONFIG_PATH\n");
 
2806
-      printf("*** to point to the correct configuration files\n");
 
2807
-    } 
 
2808
-  else if ((glib_major_version != GLIB_MAJOR_VERSION) ||
 
2809
-          (glib_minor_version != GLIB_MINOR_VERSION) ||
 
2810
-           (glib_micro_version != GLIB_MICRO_VERSION))
 
2811
-    {
 
2812
-      printf("*** GLIB header files (version %d.%d.%d) do not match\n",
 
2813
-            GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION);
 
2814
-      printf("*** library (version %d.%d.%d)\n",
 
2815
-            glib_major_version, glib_minor_version, glib_micro_version);
 
2816
-    }
 
2817
-  else
 
2818
-    {
 
2819
-      if ((glib_major_version > major) ||
 
2820
-        ((glib_major_version == major) && (glib_minor_version > minor)) ||
 
2821
-        ((glib_major_version == major) && (glib_minor_version == minor) && (glib_micro_version >= micro)))
 
2822
-      {
 
2823
-        return 0;
 
2824
-       }
 
2825
-     else
 
2826
-      {
 
2827
-        printf("\n*** An old version of GLIB (%d.%d.%d) was found.\n",
 
2828
-               glib_major_version, glib_minor_version, glib_micro_version);
 
2829
-        printf("*** You need a version of GLIB newer than %d.%d.%d. The latest version of\n",
 
2830
-              major, minor, micro);
 
2831
-        printf("*** GLIB is always available from ftp://ftp.gtk.org.\n");
 
2832
-        printf("***\n");
 
2833
-        printf("*** If you have already installed a sufficiently new version, this error\n");
 
2834
-        printf("*** probably means that the wrong copy of the pkg-config shell script is\n");
 
2835
-        printf("*** being found. The easiest way to fix this is to remove the old version\n");
 
2836
-        printf("*** of GLIB, but you can also set the PKG_CONFIG environment to point to the\n");
 
2837
-        printf("*** correct copy of pkg-config. (In this case, you will have to\n");
 
2838
-        printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n");
 
2839
-        printf("*** so that the correct libraries are found at run-time))\n");
 
2840
-      }
 
2841
-    }
 
2842
-  return 1;
 
2843
-}
 
2844
-],, no_glib=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
 
2845
-       CFLAGS="$ac_save_CFLAGS"
 
2846
-       LIBS="$ac_save_LIBS"
 
2847
-     fi
 
2848
+# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
 
2849
+# AM_INIT_AUTOMAKE([OPTIONS])
 
2850
+# -----------------------------------------------
 
2851
+# The call with PACKAGE and VERSION arguments is the old style
 
2852
+# call (pre autoconf-2.50), which is being phased out.  PACKAGE
 
2853
+# and VERSION should now be passed to AC_INIT and removed from
 
2854
+# the call to AM_INIT_AUTOMAKE.
 
2855
+# We support both call styles for the transition.  After
 
2856
+# the next Automake release, Autoconf can make the AC_INIT
 
2857
+# arguments mandatory, and then we can depend on a new Autoconf
 
2858
+# release and drop the old call support.
 
2859
+AC_DEFUN([AM_INIT_AUTOMAKE],
 
2860
+[AC_PREREQ([2.62])dnl
 
2861
+dnl Autoconf wants to disallow AM_ names.  We explicitly allow
 
2862
+dnl the ones we care about.
 
2863
+m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
 
2864
+AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
 
2865
+AC_REQUIRE([AC_PROG_INSTALL])dnl
 
2866
+if test "`cd $srcdir && pwd`" != "`pwd`"; then
 
2867
+  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
 
2868
+  # is not polluted with repeated "-I."
 
2869
+  AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
 
2870
+  # test to see if srcdir already configured
 
2871
+  if test -f $srcdir/config.status; then
 
2872
+    AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
 
2873
   fi
 
2874
-  if test "x$no_glib" = x ; then
 
2875
-     AC_MSG_RESULT(yes (version $glib_config_major_version.$glib_config_minor_version.$glib_config_micro_version))
 
2876
-     ifelse([$2], , :, [$2])     
 
2877
+fi
 
2878
+
 
2879
+# test whether we have cygpath
 
2880
+if test -z "$CYGPATH_W"; then
 
2881
+  if (cygpath --version) >/dev/null 2>/dev/null; then
 
2882
+    CYGPATH_W='cygpath -w'
 
2883
   else
 
2884
-     AC_MSG_RESULT(no)
 
2885
-     if test "$PKG_CONFIG" = "no" ; then
 
2886
-       echo "*** A new enough version of pkg-config was not found."
 
2887
-       echo "*** See http://www.freedesktop.org/software/pkgconfig/"
 
2888
-     else
 
2889
-       if test -f conf.glibtest ; then
 
2890
-        :
 
2891
-       else
 
2892
-          echo "*** Could not run GLIB test program, checking why..."
 
2893
-          ac_save_CFLAGS="$CFLAGS"
 
2894
-          ac_save_LIBS="$LIBS"
 
2895
-          CFLAGS="$CFLAGS $GLIB_CFLAGS"
 
2896
-          LIBS="$LIBS $GLIB_LIBS"
 
2897
-          AC_TRY_LINK([
 
2898
-#include <glib.h>
 
2899
-#include <stdio.h>
 
2900
-],      [ return ((glib_major_version) || (glib_minor_version) || (glib_micro_version)); ],
 
2901
-        [ echo "*** The test program compiled, but did not run. This usually means"
 
2902
-          echo "*** that the run-time linker is not finding GLIB or finding the wrong"
 
2903
-          echo "*** version of GLIB. If it is not finding GLIB, you'll need to set your"
 
2904
-          echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
 
2905
-          echo "*** to the installed location  Also, make sure you have run ldconfig if that"
 
2906
-          echo "*** is required on your system"
 
2907
-         echo "***"
 
2908
-          echo "*** If you have an old version installed, it is best to remove it, although"
 
2909
-          echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" ],
 
2910
-        [ echo "*** The test program failed to compile or link. See the file config.log for the"
 
2911
-          echo "*** exact error that occured. This usually means GLIB is incorrectly installed."])
 
2912
-          CFLAGS="$ac_save_CFLAGS"
 
2913
-          LIBS="$ac_save_LIBS"
 
2914
-       fi
 
2915
-     fi
 
2916
-     GLIB_CFLAGS=""
 
2917
-     GLIB_LIBS=""
 
2918
-     GLIB_GENMARSHAL=""
 
2919
-     GOBJECT_QUERY=""
 
2920
-     GLIB_MKENUMS=""
 
2921
-     ifelse([$3], , :, [$3])
 
2922
+    CYGPATH_W=echo
 
2923
   fi
 
2924
-  AC_SUBST(GLIB_CFLAGS)
 
2925
-  AC_SUBST(GLIB_LIBS)
 
2926
-  AC_SUBST(GLIB_GENMARSHAL)
 
2927
-  AC_SUBST(GOBJECT_QUERY)
 
2928
-  AC_SUBST(GLIB_MKENUMS)
 
2929
-  rm -f conf.glibtest
 
2930
+fi
 
2931
+AC_SUBST([CYGPATH_W])
 
2932
+
 
2933
+# Define the identity of the package.
 
2934
+dnl Distinguish between old-style and new-style calls.
 
2935
+m4_ifval([$2],
 
2936
+[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
 
2937
+ AC_SUBST([PACKAGE], [$1])dnl
 
2938
+ AC_SUBST([VERSION], [$2])],
 
2939
+[_AM_SET_OPTIONS([$1])dnl
 
2940
+dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
 
2941
+m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,,
 
2942
+  [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
 
2943
+ AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
 
2944
+ AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
 
2945
+
 
2946
+_AM_IF_OPTION([no-define],,
 
2947
+[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
 
2948
+ AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
 
2949
+
 
2950
+# Some tools Automake needs.
 
2951
+AC_REQUIRE([AM_SANITY_CHECK])dnl
 
2952
+AC_REQUIRE([AC_ARG_PROGRAM])dnl
 
2953
+AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
 
2954
+AM_MISSING_PROG(AUTOCONF, autoconf)
 
2955
+AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
 
2956
+AM_MISSING_PROG(AUTOHEADER, autoheader)
 
2957
+AM_MISSING_PROG(MAKEINFO, makeinfo)
 
2958
+AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
 
2959
+AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
 
2960
+AC_REQUIRE([AM_PROG_MKDIR_P])dnl
 
2961
+# We need awk for the "check" target.  The system "awk" is bad on
 
2962
+# some platforms.
 
2963
+AC_REQUIRE([AC_PROG_AWK])dnl
 
2964
+AC_REQUIRE([AC_PROG_MAKE_SET])dnl
 
2965
+AC_REQUIRE([AM_SET_LEADING_DOT])dnl
 
2966
+_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
 
2967
+             [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
 
2968
+                            [_AM_PROG_TAR([v7])])])
 
2969
+_AM_IF_OPTION([no-dependencies],,
 
2970
+[AC_PROVIDE_IFELSE([AC_PROG_CC],
 
2971
+                 [_AM_DEPENDENCIES(CC)],
 
2972
+                 [define([AC_PROG_CC],
 
2973
+                         defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
 
2974
+AC_PROVIDE_IFELSE([AC_PROG_CXX],
 
2975
+                 [_AM_DEPENDENCIES(CXX)],
 
2976
+                 [define([AC_PROG_CXX],
 
2977
+                         defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
 
2978
+AC_PROVIDE_IFELSE([AC_PROG_OBJC],
 
2979
+                 [_AM_DEPENDENCIES(OBJC)],
 
2980
+                 [define([AC_PROG_OBJC],
 
2981
+                         defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
 
2982
+])
 
2983
+_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl
 
2984
+dnl The `parallel-tests' driver may need to know about EXEEXT, so add the
 
2985
+dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen.  This macro
 
2986
+dnl is hooked onto _AC_COMPILER_EXEEXT early, see below.
 
2987
+AC_CONFIG_COMMANDS_PRE(dnl
 
2988
+[m4_provide_if([_AM_COMPILER_EXEEXT],
 
2989
+  [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
 
2990
 ])
 
2991
 
 
2992
-# Copyright (C) 1995-2002 Free Software Foundation, Inc.
 
2993
-# Copyright (C) 2001-2003,2004 Red Hat, Inc.
 
2994
-#
 
2995
-# This file is free software, distributed under the terms of the GNU
 
2996
-# General Public License.  As a special exception to the GNU General
 
2997
-# Public License, this file may be distributed as part of a program
 
2998
-# that contains a configuration script generated by Autoconf, under
 
2999
-# the same distribution terms as the rest of that program.
 
3000
-#
 
3001
-# This file can be copied and used freely without restrictions.  It can
 
3002
-# be used in projects which are not available under the GNU Public License
 
3003
-# but which still want to provide support for the GNU gettext functionality.
 
3004
-#
 
3005
-# Macro to add for using GNU gettext.
 
3006
-# Ulrich Drepper <drepper@cygnus.com>, 1995, 1996
 
3007
-#
 
3008
-# Modified to never use included libintl. 
 
3009
-# Owen Taylor <otaylor@redhat.com>, 12/15/1998
 
3010
-#
 
3011
-# Major rework to remove unused code
 
3012
-# Owen Taylor <otaylor@redhat.com>, 12/11/2002
 
3013
+dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion.  Do not
 
3014
+dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
 
3015
+dnl mangled by Autoconf and run in a shell conditional statement.
 
3016
+m4_define([_AC_COMPILER_EXEEXT],
 
3017
+m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
 
3018
+
 
3019
+
 
3020
+# When config.status generates a header, we must update the stamp-h file.
 
3021
+# This file resides in the same directory as the config header
 
3022
+# that is generated.  The stamp files are numbered to have different names.
 
3023
+
 
3024
+# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
 
3025
+# loop where config.status creates the headers, so we can generate
 
3026
+# our stamp files there.
 
3027
+AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
 
3028
+[# Compute $1's index in $config_headers.
 
3029
+_am_arg=$1
 
3030
+_am_stamp_count=1
 
3031
+for _am_header in $config_headers :; do
 
3032
+  case $_am_header in
 
3033
+    $_am_arg | $_am_arg:* )
 
3034
+      break ;;
 
3035
+    * )
 
3036
+      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
 
3037
+  esac
 
3038
+done
 
3039
+echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
 
3040
+
 
3041
+# Copyright (C) 2001, 2003, 2005, 2008  Free Software Foundation, Inc.
 
3042
 #
 
3043
-# Added better handling of ALL_LINGUAS from GNU gettext version 
 
3044
-# written by Bruno Haible, Owen Taylor <otaylor.redhat.com> 5/30/3002
 
3045
+# This file is free software; the Free Software Foundation
 
3046
+# gives unlimited permission to copy and/or distribute it,
 
3047
+# with or without modifications, as long as this notice is preserved.
 
3048
+
 
3049
+# AM_PROG_INSTALL_SH
 
3050
+# ------------------
 
3051
+# Define $install_sh.
 
3052
+AC_DEFUN([AM_PROG_INSTALL_SH],
 
3053
+[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
 
3054
+if test x"${install_sh}" != xset; then
 
3055
+  case $am_aux_dir in
 
3056
+  *\ * | *\    *)
 
3057
+    install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
 
3058
+  *)
 
3059
+    install_sh="\${SHELL} $am_aux_dir/install-sh"
 
3060
+  esac
 
3061
+fi
 
3062
+AC_SUBST(install_sh)])
 
3063
+
 
3064
+# Copyright (C) 2003, 2005  Free Software Foundation, Inc.
 
3065
 #
 
3066
-# Modified to require ngettext
 
3067
-# Matthias Clasen <mclasen@redhat.com> 08/06/2004
 
3068
+# This file is free software; the Free Software Foundation
 
3069
+# gives unlimited permission to copy and/or distribute it,
 
3070
+# with or without modifications, as long as this notice is preserved.
 
3071
+
 
3072
+# serial 2
 
3073
+
 
3074
+# Check whether the underlying file-system supports filenames
 
3075
+# with a leading dot.  For instance MS-DOS doesn't.
 
3076
+AC_DEFUN([AM_SET_LEADING_DOT],
 
3077
+[rm -rf .tst 2>/dev/null
 
3078
+mkdir .tst 2>/dev/null
 
3079
+if test -d .tst; then
 
3080
+  am__leading_dot=.
 
3081
+else
 
3082
+  am__leading_dot=_
 
3083
+fi
 
3084
+rmdir .tst 2>/dev/null
 
3085
+AC_SUBST([am__leading_dot])])
 
3086
+
 
3087
+# Add --enable-maintainer-mode option to configure.         -*- Autoconf -*-
 
3088
+# From Jim Meyering
 
3089
+
 
3090
+# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2008
 
3091
+# Free Software Foundation, Inc.
 
3092
 #
 
3093
-# We need this here as well, since someone might use autoconf-2.5x
 
3094
-# to configure GLib then an older version to configure a package
 
3095
-# using AM_GLIB_GNU_GETTEXT
 
3096
-AC_PREREQ(2.53)
 
3097
+# This file is free software; the Free Software Foundation
 
3098
+# gives unlimited permission to copy and/or distribute it,
 
3099
+# with or without modifications, as long as this notice is preserved.
 
3100
 
 
3101
-dnl
 
3102
-dnl We go to great lengths to make sure that aclocal won't 
 
3103
-dnl try to pull in the installed version of these macros
 
3104
-dnl when running aclocal in the glib directory.
 
3105
-dnl
 
3106
-m4_copy([AC_DEFUN],[glib_DEFUN])
 
3107
-m4_copy([AC_REQUIRE],[glib_REQUIRE])
 
3108
-dnl
 
3109
-dnl At the end, if we're not within glib, we'll define the public
 
3110
-dnl definitions in terms of our private definitions.
 
3111
-dnl
 
3112
+# serial 5
 
3113
 
 
3114
-# GLIB_LC_MESSAGES
 
3115
-#--------------------
 
3116
-glib_DEFUN([GLIB_LC_MESSAGES],
 
3117
-  [AC_CHECK_HEADERS([locale.h])
 
3118
-    if test $ac_cv_header_locale_h = yes; then
 
3119
-    AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES,
 
3120
-      [AC_TRY_LINK([#include <locale.h>], [return LC_MESSAGES],
 
3121
-       am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)])
 
3122
-    if test $am_cv_val_LC_MESSAGES = yes; then
 
3123
-      AC_DEFINE(HAVE_LC_MESSAGES, 1,
 
3124
-        [Define if your <locale.h> file defines LC_MESSAGES.])
 
3125
-    fi
 
3126
-  fi])
 
3127
+# AM_MAINTAINER_MODE([DEFAULT-MODE])
 
3128
+# ----------------------------------
 
3129
+# Control maintainer-specific portions of Makefiles.
 
3130
+# Default is to disable them, unless `enable' is passed literally.
 
3131
+# For symmetry, `disable' may be passed as well.  Anyway, the user
 
3132
+# can override the default with the --enable/--disable switch.
 
3133
+AC_DEFUN([AM_MAINTAINER_MODE],
 
3134
+[m4_case(m4_default([$1], [disable]),
 
3135
+       [enable], [m4_define([am_maintainer_other], [disable])],
 
3136
+       [disable], [m4_define([am_maintainer_other], [enable])],
 
3137
+       [m4_define([am_maintainer_other], [enable])
 
3138
+        m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])])
 
3139
+AC_MSG_CHECKING([whether to am_maintainer_other maintainer-specific portions of Makefiles])
 
3140
+  dnl maintainer-mode's default is 'disable' unless 'enable' is passed
 
3141
+  AC_ARG_ENABLE([maintainer-mode],
 
3142
+[  --][am_maintainer_other][-maintainer-mode  am_maintainer_other make rules and dependencies not useful
 
3143
+                         (and sometimes confusing) to the casual installer],
 
3144
+      [USE_MAINTAINER_MODE=$enableval],
 
3145
+      [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes]))
 
3146
+  AC_MSG_RESULT([$USE_MAINTAINER_MODE])
 
3147
+  AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes])
 
3148
+  MAINT=$MAINTAINER_MODE_TRUE
 
3149
+  AC_SUBST([MAINT])dnl
 
3150
+]
 
3151
+)
 
3152
 
 
3153
-# GLIB_PATH_PROG_WITH_TEST
 
3154
-#----------------------------
 
3155
-dnl GLIB_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR,
 
3156
-dnl   TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]])
 
3157
-glib_DEFUN([GLIB_PATH_PROG_WITH_TEST],
 
3158
-[# Extract the first word of "$2", so it can be a program name with args.
 
3159
-set dummy $2; ac_word=[$]2
 
3160
-AC_MSG_CHECKING([for $ac_word])
 
3161
-AC_CACHE_VAL(ac_cv_path_$1,
 
3162
-[case "[$]$1" in
 
3163
-  /*)
 
3164
-  ac_cv_path_$1="[$]$1" # Let the user override the test with a path.
 
3165
-  ;;
 
3166
-  *)
 
3167
-  IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
 
3168
-  for ac_dir in ifelse([$5], , $PATH, [$5]); do
 
3169
-    test -z "$ac_dir" && ac_dir=.
 
3170
-    if test -f $ac_dir/$ac_word; then
 
3171
-      if [$3]; then
 
3172
-       ac_cv_path_$1="$ac_dir/$ac_word"
 
3173
-       break
 
3174
-      fi
 
3175
-    fi
 
3176
-  done
 
3177
-  IFS="$ac_save_ifs"
 
3178
-dnl If no 4th arg is given, leave the cache variable unset,
 
3179
-dnl so AC_PATH_PROGS will keep looking.
 
3180
-ifelse([$4], , , [  test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4"
 
3181
-])dnl
 
3182
+AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
 
3183
+
 
3184
+# Check to see how 'make' treats includes.                 -*- Autoconf -*-
 
3185
+
 
3186
+# Copyright (C) 2001, 2002, 2003, 2005, 2009  Free Software Foundation, Inc.
 
3187
+#
 
3188
+# This file is free software; the Free Software Foundation
 
3189
+# gives unlimited permission to copy and/or distribute it,
 
3190
+# with or without modifications, as long as this notice is preserved.
 
3191
+
 
3192
+# serial 4
 
3193
+
 
3194
+# AM_MAKE_INCLUDE()
 
3195
+# -----------------
 
3196
+# Check to see how make treats includes.
 
3197
+AC_DEFUN([AM_MAKE_INCLUDE],
 
3198
+[am_make=${MAKE-make}
 
3199
+cat > confinc << 'END'
 
3200
+am__doit:
 
3201
+       @echo this is the am__doit target
 
3202
+.PHONY: am__doit
 
3203
+END
 
3204
+# If we don't find an include directive, just comment out the code.
 
3205
+AC_MSG_CHECKING([for style of include used by $am_make])
 
3206
+am__include="#"
 
3207
+am__quote=
 
3208
+_am_result=none
 
3209
+# First try GNU make style include.
 
3210
+echo "include confinc" > confmf
 
3211
+# Ignore all kinds of additional output from `make'.
 
3212
+case `$am_make -s -f confmf 2> /dev/null` in #(
 
3213
+*the\ am__doit\ target*)
 
3214
+  am__include=include
 
3215
+  am__quote=
 
3216
+  _am_result=GNU
 
3217
   ;;
 
3218
-esac])dnl
 
3219
-$1="$ac_cv_path_$1"
 
3220
-if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then
 
3221
-  AC_MSG_RESULT([$]$1)
 
3222
-else
 
3223
-  AC_MSG_RESULT(no)
 
3224
+esac
 
3225
+# Now try BSD make style include.
 
3226
+if test "$am__include" = "#"; then
 
3227
+   echo '.include "confinc"' > confmf
 
3228
+   case `$am_make -s -f confmf 2> /dev/null` in #(
 
3229
+   *the\ am__doit\ target*)
 
3230
+     am__include=.include
 
3231
+     am__quote="\""
 
3232
+     _am_result=BSD
 
3233
+     ;;
 
3234
+   esac
 
3235
 fi
 
3236
-AC_SUBST($1)dnl
 
3237
+AC_SUBST([am__include])
 
3238
+AC_SUBST([am__quote])
 
3239
+AC_MSG_RESULT([$_am_result])
 
3240
+rm -f confinc confmf
 
3241
 ])
 
3242
 
 
3243
-# GLIB_WITH_NLS
 
3244
-#-----------------
 
3245
-glib_DEFUN([GLIB_WITH_NLS],
 
3246
-  dnl NLS is obligatory
 
3247
-  [USE_NLS=yes
 
3248
-    AC_SUBST(USE_NLS)
 
3249
+# Copyright (C) 1999, 2000, 2001, 2003, 2004, 2005, 2008
 
3250
+# Free Software Foundation, Inc.
 
3251
+#
 
3252
+# This file is free software; the Free Software Foundation
 
3253
+# gives unlimited permission to copy and/or distribute it,
 
3254
+# with or without modifications, as long as this notice is preserved.
 
3255
 
 
3256
-    gt_cv_have_gettext=no
 
3257
+# serial 6
 
3258
 
 
3259
-    CATOBJEXT=NONE
 
3260
-    XGETTEXT=:
 
3261
-    INTLLIBS=
 
3262
+# AM_PROG_CC_C_O
 
3263
+# --------------
 
3264
+# Like AC_PROG_CC_C_O, but changed for automake.
 
3265
+AC_DEFUN([AM_PROG_CC_C_O],
 
3266
+[AC_REQUIRE([AC_PROG_CC_C_O])dnl
 
3267
+AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
 
3268
+AC_REQUIRE_AUX_FILE([compile])dnl
 
3269
+# FIXME: we rely on the cache variable name because
 
3270
+# there is no other way.
 
3271
+set dummy $CC
 
3272
+am_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']`
 
3273
+eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o
 
3274
+if test "$am_t" != yes; then
 
3275
+   # Losing compiler, so override with the script.
 
3276
+   # FIXME: It is wrong to rewrite CC.
 
3277
+   # But if we don't then we get into trouble of one sort or another.
 
3278
+   # A longer-term fix would be to have automake use am__CC in this case,
 
3279
+   # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
 
3280
+   CC="$am_aux_dir/compile $CC"
 
3281
+fi
 
3282
+dnl Make sure AC_PROG_CC is never called again, or it will override our
 
3283
+dnl setting of CC.
 
3284
+m4_define([AC_PROG_CC],
 
3285
+          [m4_fatal([AC_PROG_CC cannot be called after AM_PROG_CC_C_O])])
 
3286
+])
 
3287
 
 
3288
-    AC_CHECK_HEADER(libintl.h,
 
3289
-     [gt_cv_func_dgettext_libintl="no"
 
3290
-      libintl_extra_libs=""
 
3291
+# Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*-
 
3292
 
 
3293
-      #
 
3294
-      # First check in libc
 
3295
-      #
 
3296
-      AC_CACHE_CHECK([for ngettext in libc], gt_cv_func_ngettext_libc,
 
3297
-        [AC_TRY_LINK([
 
3298
-#include <libintl.h>
 
3299
-],
 
3300
-         [return !ngettext ("","", 1)],
 
3301
-         gt_cv_func_ngettext_libc=yes,
 
3302
-          gt_cv_func_ngettext_libc=no)
 
3303
-        ])
 
3304
-  
 
3305
-      if test "$gt_cv_func_ngettext_libc" = "yes" ; then
 
3306
-             AC_CACHE_CHECK([for dgettext in libc], gt_cv_func_dgettext_libc,
 
3307
-               [AC_TRY_LINK([
 
3308
-#include <libintl.h>
 
3309
-],
 
3310
-                 [return !dgettext ("","")],
 
3311
-                 gt_cv_func_dgettext_libc=yes,
 
3312
-                 gt_cv_func_dgettext_libc=no)
 
3313
-               ])
 
3314
-      fi
 
3315
-  
 
3316
-      if test "$gt_cv_func_ngettext_libc" = "yes" ; then
 
3317
-        AC_CHECK_FUNCS(bind_textdomain_codeset)
 
3318
-      fi
 
3319
+# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008
 
3320
+# Free Software Foundation, Inc.
 
3321
+#
 
3322
+# This file is free software; the Free Software Foundation
 
3323
+# gives unlimited permission to copy and/or distribute it,
 
3324
+# with or without modifications, as long as this notice is preserved.
 
3325
 
 
3326
-      #
 
3327
-      # If we don't have everything we want, check in libintl
 
3328
-      #
 
3329
-      if test "$gt_cv_func_dgettext_libc" != "yes" \
 
3330
-        || test "$gt_cv_func_ngettext_libc" != "yes" \
 
3331
-         || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then
 
3332
-        
 
3333
-        AC_CHECK_LIB(intl, bindtextdomain,
 
3334
-           [AC_CHECK_LIB(intl, ngettext,
 
3335
-                   [AC_CHECK_LIB(intl, dgettext,
 
3336
-                                 gt_cv_func_dgettext_libintl=yes)])])
 
3337
+# serial 6
 
3338
 
 
3339
-       if test "$gt_cv_func_dgettext_libintl" != "yes" ; then
 
3340
-         AC_MSG_CHECKING([if -liconv is needed to use gettext])
 
3341
-         AC_MSG_RESULT([])
 
3342
-         AC_CHECK_LIB(intl, ngettext,
 
3343
-               [AC_CHECK_LIB(intl, dcgettext,
 
3344
-                      [gt_cv_func_dgettext_libintl=yes
 
3345
-                       libintl_extra_libs=-liconv],
 
3346
-                       :,-liconv)],
 
3347
-               :,-liconv)
 
3348
-        fi
 
3349
+# AM_MISSING_PROG(NAME, PROGRAM)
 
3350
+# ------------------------------
 
3351
+AC_DEFUN([AM_MISSING_PROG],
 
3352
+[AC_REQUIRE([AM_MISSING_HAS_RUN])
 
3353
+$1=${$1-"${am_missing_run}$2"}
 
3354
+AC_SUBST($1)])
 
3355
 
 
3356
-        #
 
3357
-        # If we found libintl, then check in it for bind_textdomain_codeset();
 
3358
-        # we'll prefer libc if neither have bind_textdomain_codeset(),
 
3359
-        # and both have dgettext and ngettext
 
3360
-        #
 
3361
-        if test "$gt_cv_func_dgettext_libintl" = "yes" ; then
 
3362
-          glib_save_LIBS="$LIBS"
 
3363
-          LIBS="$LIBS -lintl $libintl_extra_libs"
 
3364
-          unset ac_cv_func_bind_textdomain_codeset
 
3365
-          AC_CHECK_FUNCS(bind_textdomain_codeset)
 
3366
-          LIBS="$glib_save_LIBS"
 
3367
 
 
3368
-          if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then
 
3369
-            gt_cv_func_dgettext_libc=no
 
3370
-          else
 
3371
-            if test "$gt_cv_func_dgettext_libc" = "yes" \
 
3372
-               && test "$gt_cv_func_ngettext_libc" = "yes"; then
 
3373
-              gt_cv_func_dgettext_libintl=no
 
3374
-            fi
 
3375
-          fi
 
3376
-        fi
 
3377
-      fi
 
3378
+# AM_MISSING_HAS_RUN
 
3379
+# ------------------
 
3380
+# Define MISSING if not defined so far and test if it supports --run.
 
3381
+# If it does, set am_missing_run to use it, otherwise, to nothing.
 
3382
+AC_DEFUN([AM_MISSING_HAS_RUN],
 
3383
+[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
 
3384
+AC_REQUIRE_AUX_FILE([missing])dnl
 
3385
+if test x"${MISSING+set}" != xset; then
 
3386
+  case $am_aux_dir in
 
3387
+  *\ * | *\    *)
 
3388
+    MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
 
3389
+  *)
 
3390
+    MISSING="\${SHELL} $am_aux_dir/missing" ;;
 
3391
+  esac
 
3392
+fi
 
3393
+# Use eval to expand $SHELL
 
3394
+if eval "$MISSING --run true"; then
 
3395
+  am_missing_run="$MISSING --run "
 
3396
+else
 
3397
+  am_missing_run=
 
3398
+  AC_MSG_WARN([`missing' script is too old or missing])
 
3399
+fi
 
3400
+])
 
3401
 
 
3402
-      if test "$gt_cv_func_dgettext_libc" = "yes" \
 
3403
-       || test "$gt_cv_func_dgettext_libintl" = "yes"; then
 
3404
-        gt_cv_have_gettext=yes
 
3405
-      fi
 
3406
-  
 
3407
-      if test "$gt_cv_func_dgettext_libintl" = "yes"; then
 
3408
-        INTLLIBS="-lintl $libintl_extra_libs"
 
3409
-      fi
 
3410
-  
 
3411
-      if test "$gt_cv_have_gettext" = "yes"; then
 
3412
-       AC_DEFINE(HAVE_GETTEXT,1,
 
3413
-         [Define if the GNU gettext() function is already present or preinstalled.])
 
3414
-       GLIB_PATH_PROG_WITH_TEST(MSGFMT, msgfmt,
 
3415
-         [test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"], no)dnl
 
3416
-       if test "$MSGFMT" != "no"; then
 
3417
-          glib_save_LIBS="$LIBS"
 
3418
-          LIBS="$LIBS $INTLLIBS"
 
3419
-         AC_CHECK_FUNCS(dcgettext)
 
3420
-         MSGFMT_OPTS=
 
3421
-         AC_MSG_CHECKING([if msgfmt accepts -c])
 
3422
-         GLIB_RUN_PROG([$MSGFMT -c -o /dev/null],[
 
3423
-msgid ""
 
3424
-msgstr ""
 
3425
-"Content-Type: text/plain; charset=UTF-8\n"
 
3426
-"Project-Id-Version: test 1.0\n"
 
3427
-"PO-Revision-Date: 2007-02-15 12:01+0100\n"
 
3428
-"Last-Translator: test <foo@bar.xx>\n"
 
3429
-"Language-Team: C <LL@li.org>\n"
 
3430
-"MIME-Version: 1.0\n"
 
3431
-"Content-Transfer-Encoding: 8bit\n"
 
3432
-], [MSGFMT_OPTS=-c; AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no])])
 
3433
-         AC_SUBST(MSGFMT_OPTS)
 
3434
-         AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT)
 
3435
-         GLIB_PATH_PROG_WITH_TEST(XGETTEXT, xgettext,
 
3436
-           [test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"], :)
 
3437
-         AC_TRY_LINK(, [extern int _nl_msg_cat_cntr;
 
3438
-                        return _nl_msg_cat_cntr],
 
3439
-           [CATOBJEXT=.gmo 
 
3440
-             DATADIRNAME=share],
 
3441
-           [case $host in
 
3442
-           *-*-solaris*)
 
3443
-           dnl On Solaris, if bind_textdomain_codeset is in libc,
 
3444
-           dnl GNU format message catalog is always supported,
 
3445
-            dnl since both are added to the libc all together.
 
3446
-           dnl Hence, we'd like to go with DATADIRNAME=share and
 
3447
-           dnl and CATOBJEXT=.gmo in this case.
 
3448
-            AC_CHECK_FUNC(bind_textdomain_codeset,
 
3449
-             [CATOBJEXT=.gmo 
 
3450
-               DATADIRNAME=share],
 
3451
-             [CATOBJEXT=.mo
 
3452
-               DATADIRNAME=lib])
 
3453
-           ;;
 
3454
-           *)
 
3455
-           CATOBJEXT=.mo
 
3456
-            DATADIRNAME=lib
 
3457
-           ;;
 
3458
-           esac])
 
3459
-          LIBS="$glib_save_LIBS"
 
3460
-         INSTOBJEXT=.mo
 
3461
-       else
 
3462
-         gt_cv_have_gettext=no
 
3463
-       fi
 
3464
-      fi
 
3465
-    ])
 
3466
+# Copyright (C) 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
 
3467
+#
 
3468
+# This file is free software; the Free Software Foundation
 
3469
+# gives unlimited permission to copy and/or distribute it,
 
3470
+# with or without modifications, as long as this notice is preserved.
 
3471
+
 
3472
+# AM_PROG_MKDIR_P
 
3473
+# ---------------
 
3474
+# Check for `mkdir -p'.
 
3475
+AC_DEFUN([AM_PROG_MKDIR_P],
 
3476
+[AC_PREREQ([2.60])dnl
 
3477
+AC_REQUIRE([AC_PROG_MKDIR_P])dnl
 
3478
+dnl Automake 1.8 to 1.9.6 used to define mkdir_p.  We now use MKDIR_P,
 
3479
+dnl while keeping a definition of mkdir_p for backward compatibility.
 
3480
+dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
 
3481
+dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of
 
3482
+dnl Makefile.ins that do not define MKDIR_P, so we do our own
 
3483
+dnl adjustment using top_builddir (which is defined more often than
 
3484
+dnl MKDIR_P).
 
3485
+AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
 
3486
+case $mkdir_p in
 
3487
+  [[\\/$]]* | ?:[[\\/]]*) ;;
 
3488
+  */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
 
3489
+esac
 
3490
+])
 
3491
 
 
3492
-    if test "$gt_cv_have_gettext" = "yes" ; then
 
3493
-      AC_DEFINE(ENABLE_NLS, 1,
 
3494
-        [always defined to indicate that i18n is enabled])
 
3495
-    fi
 
3496
+# Helper functions for option handling.                     -*- Autoconf -*-
 
3497
 
 
3498
-    dnl Test whether we really found GNU xgettext.
 
3499
-    if test "$XGETTEXT" != ":"; then
 
3500
-      dnl If it is not GNU xgettext we define it as : so that the
 
3501
-      dnl Makefiles still can work.
 
3502
-      if $XGETTEXT --omit-header /dev/null 2> /dev/null; then
 
3503
-        : ;
 
3504
+# Copyright (C) 2001, 2002, 2003, 2005, 2008  Free Software Foundation, Inc.
 
3505
+#
 
3506
+# This file is free software; the Free Software Foundation
 
3507
+# gives unlimited permission to copy and/or distribute it,
 
3508
+# with or without modifications, as long as this notice is preserved.
 
3509
+
 
3510
+# serial 4
 
3511
+
 
3512
+# _AM_MANGLE_OPTION(NAME)
 
3513
+# -----------------------
 
3514
+AC_DEFUN([_AM_MANGLE_OPTION],
 
3515
+[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
 
3516
+
 
3517
+# _AM_SET_OPTION(NAME)
 
3518
+# ------------------------------
 
3519
+# Set option NAME.  Presently that only means defining a flag for this option.
 
3520
+AC_DEFUN([_AM_SET_OPTION],
 
3521
+[m4_define(_AM_MANGLE_OPTION([$1]), 1)])
 
3522
+
 
3523
+# _AM_SET_OPTIONS(OPTIONS)
 
3524
+# ----------------------------------
 
3525
+# OPTIONS is a space-separated list of Automake options.
 
3526
+AC_DEFUN([_AM_SET_OPTIONS],
 
3527
+[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
 
3528
+
 
3529
+# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
 
3530
+# -------------------------------------------
 
3531
+# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
 
3532
+AC_DEFUN([_AM_IF_OPTION],
 
3533
+[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
 
3534
+
 
3535
+# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008, 2009
 
3536
+# Free Software Foundation, Inc.
 
3537
+#
 
3538
+# This file is free software; the Free Software Foundation
 
3539
+# gives unlimited permission to copy and/or distribute it,
 
3540
+# with or without modifications, as long as this notice is preserved.
 
3541
+
 
3542
+# AM_PATH_PYTHON([MINIMUM-VERSION], [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
 
3543
+# ---------------------------------------------------------------------------
 
3544
+# Adds support for distributing Python modules and packages.  To
 
3545
+# install modules, copy them to $(pythondir), using the python_PYTHON
 
3546
+# automake variable.  To install a package with the same name as the
 
3547
+# automake package, install to $(pkgpythondir), or use the
 
3548
+# pkgpython_PYTHON automake variable.
 
3549
+#
 
3550
+# The variables $(pyexecdir) and $(pkgpyexecdir) are provided as
 
3551
+# locations to install python extension modules (shared libraries).
 
3552
+# Another macro is required to find the appropriate flags to compile
 
3553
+# extension modules.
 
3554
+#
 
3555
+# If your package is configured with a different prefix to python,
 
3556
+# users will have to add the install directory to the PYTHONPATH
 
3557
+# environment variable, or create a .pth file (see the python
 
3558
+# documentation for details).
 
3559
+#
 
3560
+# If the MINIMUM-VERSION argument is passed, AM_PATH_PYTHON will
 
3561
+# cause an error if the version of python installed on the system
 
3562
+# doesn't meet the requirement.  MINIMUM-VERSION should consist of
 
3563
+# numbers and dots only.
 
3564
+AC_DEFUN([AM_PATH_PYTHON],
 
3565
+ [
 
3566
+  dnl Find a Python interpreter.  Python versions prior to 2.0 are not
 
3567
+  dnl supported. (2.0 was released on October 16, 2000).
 
3568
+  m4_define_default([_AM_PYTHON_INTERPRETER_LIST],
 
3569
+                    [python python2 python3 python3.0 python2.5 python2.4 python2.3 python2.2 dnl
 
3570
+python2.1 python2.0])
 
3571
+
 
3572
+  m4_if([$1],[],[
 
3573
+    dnl No version check is needed.
 
3574
+    # Find any Python interpreter.
 
3575
+    if test -z "$PYTHON"; then
 
3576
+      AC_PATH_PROGS([PYTHON], _AM_PYTHON_INTERPRETER_LIST, :)
 
3577
+    fi
 
3578
+    am_display_PYTHON=python
 
3579
+  ], [
 
3580
+    dnl A version check is needed.
 
3581
+    if test -n "$PYTHON"; then
 
3582
+      # If the user set $PYTHON, use it and don't search something else.
 
3583
+      AC_MSG_CHECKING([whether $PYTHON version >= $1])
 
3584
+      AM_PYTHON_CHECK_VERSION([$PYTHON], [$1],
 
3585
+                             [AC_MSG_RESULT(yes)],
 
3586
+                             [AC_MSG_ERROR(too old)])
 
3587
+      am_display_PYTHON=$PYTHON
 
3588
+    else
 
3589
+      # Otherwise, try each interpreter until we find one that satisfies
 
3590
+      # VERSION.
 
3591
+      AC_CACHE_CHECK([for a Python interpreter with version >= $1],
 
3592
+       [am_cv_pathless_PYTHON],[
 
3593
+       for am_cv_pathless_PYTHON in _AM_PYTHON_INTERPRETER_LIST none; do
 
3594
+         test "$am_cv_pathless_PYTHON" = none && break
 
3595
+         AM_PYTHON_CHECK_VERSION([$am_cv_pathless_PYTHON], [$1], [break])
 
3596
+       done])
 
3597
+      # Set $PYTHON to the absolute path of $am_cv_pathless_PYTHON.
 
3598
+      if test "$am_cv_pathless_PYTHON" = none; then
 
3599
+       PYTHON=:
 
3600
       else
 
3601
-        AC_MSG_RESULT(
 
3602
-         [found xgettext program is not GNU xgettext; ignore it])
 
3603
-        XGETTEXT=":"
 
3604
+        AC_PATH_PROG([PYTHON], [$am_cv_pathless_PYTHON])
 
3605
       fi
 
3606
+      am_display_PYTHON=$am_cv_pathless_PYTHON
 
3607
     fi
 
3608
+  ])
 
3609
 
 
3610
-    # We need to process the po/ directory.
 
3611
-    POSUB=po
 
3612
+  if test "$PYTHON" = :; then
 
3613
+  dnl Run any user-specified action, or abort.
 
3614
+    m4_default([$3], [AC_MSG_ERROR([no suitable Python interpreter found])])
 
3615
+  else
 
3616
 
 
3617
-    AC_OUTPUT_COMMANDS(
 
3618
-      [case "$CONFIG_FILES" in *po/Makefile.in*)
 
3619
-        sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile
 
3620
-      esac])
 
3621
+  dnl Query Python for its version number.  Getting [:3] seems to be
 
3622
+  dnl the best way to do this; it's what "site.py" does in the standard
 
3623
+  dnl library.
 
3624
 
 
3625
-    dnl These rules are solely for the distribution goal.  While doing this
 
3626
-    dnl we only have to keep exactly one list of the available catalogs
 
3627
-    dnl in configure.ac.
 
3628
-    for lang in $ALL_LINGUAS; do
 
3629
-      GMOFILES="$GMOFILES $lang.gmo"
 
3630
-      POFILES="$POFILES $lang.po"
 
3631
-    done
 
3632
+  AC_CACHE_CHECK([for $am_display_PYTHON version], [am_cv_python_version],
 
3633
+    [am_cv_python_version=`$PYTHON -c "import sys; sys.stdout.write(sys.version[[:3]])"`])
 
3634
+  AC_SUBST([PYTHON_VERSION], [$am_cv_python_version])
 
3635
 
 
3636
-    dnl Make all variables we use known to autoconf.
 
3637
-    AC_SUBST(CATALOGS)
 
3638
-    AC_SUBST(CATOBJEXT)
 
3639
-    AC_SUBST(DATADIRNAME)
 
3640
-    AC_SUBST(GMOFILES)
 
3641
-    AC_SUBST(INSTOBJEXT)
 
3642
-    AC_SUBST(INTLLIBS)
 
3643
-    AC_SUBST(PO_IN_DATADIR_TRUE)
 
3644
-    AC_SUBST(PO_IN_DATADIR_FALSE)
 
3645
-    AC_SUBST(POFILES)
 
3646
-    AC_SUBST(POSUB)
 
3647
-  ])
 
3648
+  dnl Use the values of $prefix and $exec_prefix for the corresponding
 
3649
+  dnl values of PYTHON_PREFIX and PYTHON_EXEC_PREFIX.  These are made
 
3650
+  dnl distinct variables so they can be overridden if need be.  However,
 
3651
+  dnl general consensus is that you shouldn't need this ability.
 
3652
 
 
3653
-# AM_GLIB_GNU_GETTEXT
 
3654
-# -------------------
 
3655
-# Do checks necessary for use of gettext. If a suitable implementation 
 
3656
-# of gettext is found in either in libintl or in the C library,
 
3657
-# it will set INTLLIBS to the libraries needed for use of gettext
 
3658
-# and AC_DEFINE() HAVE_GETTEXT and ENABLE_NLS. (The shell variable
 
3659
-# gt_cv_have_gettext will be set to "yes".) It will also call AC_SUBST()
 
3660
-# on various variables needed by the Makefile.in.in installed by 
 
3661
-# glib-gettextize.
 
3662
-dnl
 
3663
-glib_DEFUN([GLIB_GNU_GETTEXT],
 
3664
-  [AC_REQUIRE([AC_PROG_CC])dnl
 
3665
-   AC_REQUIRE([AC_HEADER_STDC])dnl
 
3666
-   
 
3667
-   GLIB_LC_MESSAGES
 
3668
-   GLIB_WITH_NLS
 
3669
+  AC_SUBST([PYTHON_PREFIX], ['${prefix}'])
 
3670
+  AC_SUBST([PYTHON_EXEC_PREFIX], ['${exec_prefix}'])
 
3671
 
 
3672
-   if test "$gt_cv_have_gettext" = "yes"; then
 
3673
-     if test "x$ALL_LINGUAS" = "x"; then
 
3674
-       LINGUAS=
 
3675
+  dnl At times (like when building shared libraries) you may want
 
3676
+  dnl to know which OS platform Python thinks this is.
 
3677
+
 
3678
+  AC_CACHE_CHECK([for $am_display_PYTHON platform], [am_cv_python_platform],
 
3679
+    [am_cv_python_platform=`$PYTHON -c "import sys; sys.stdout.write(sys.platform)"`])
 
3680
+  AC_SUBST([PYTHON_PLATFORM], [$am_cv_python_platform])
 
3681
+
 
3682
+
 
3683
+  dnl Set up 4 directories:
 
3684
+
 
3685
+  dnl pythondir -- where to install python scripts.  This is the
 
3686
+  dnl   site-packages directory, not the python standard library
 
3687
+  dnl   directory like in previous automake betas.  This behavior
 
3688
+  dnl   is more consistent with lispdir.m4 for example.
 
3689
+  dnl Query distutils for this directory.  distutils does not exist in
 
3690
+  dnl Python 1.5, so we fall back to the hardcoded directory if it
 
3691
+  dnl doesn't work.
 
3692
+  AC_CACHE_CHECK([for $am_display_PYTHON script directory],
 
3693
+    [am_cv_python_pythondir],
 
3694
+    [if test "x$prefix" = xNONE
 
3695
+     then
 
3696
+       am_py_prefix=$ac_default_prefix
 
3697
      else
 
3698
-       AC_MSG_CHECKING(for catalogs to be installed)
 
3699
-       NEW_LINGUAS=
 
3700
-       for presentlang in $ALL_LINGUAS; do
 
3701
-         useit=no
 
3702
-         if test "%UNSET%" != "${LINGUAS-%UNSET%}"; then
 
3703
-           desiredlanguages="$LINGUAS"
 
3704
-         else
 
3705
-           desiredlanguages="$ALL_LINGUAS"
 
3706
-         fi
 
3707
-         for desiredlang in $desiredlanguages; do
 
3708
-          # Use the presentlang catalog if desiredlang is
 
3709
-           #   a. equal to presentlang, or
 
3710
-           #   b. a variant of presentlang (because in this case,
 
3711
-           #      presentlang can be used as a fallback for messages
 
3712
-           #      which are not translated in the desiredlang catalog).
 
3713
-           case "$desiredlang" in
 
3714
-             "$presentlang"*) useit=yes;;
 
3715
-           esac
 
3716
-         done
 
3717
-         if test $useit = yes; then
 
3718
-           NEW_LINGUAS="$NEW_LINGUAS $presentlang"
 
3719
-         fi
 
3720
-       done
 
3721
-       LINGUAS=$NEW_LINGUAS
 
3722
-       AC_MSG_RESULT($LINGUAS)
 
3723
+       am_py_prefix=$prefix
 
3724
      fi
 
3725
+     am_cv_python_pythondir=`$PYTHON -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(0,0,prefix='$am_py_prefix'))" 2>/dev/null ||
 
3726
+     echo "$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages"`
 
3727
+     case $am_cv_python_pythondir in
 
3728
+     $am_py_prefix*)
 
3729
+       am__strip_prefix=`echo "$am_py_prefix" | sed 's|.|.|g'`
 
3730
+       am_cv_python_pythondir=`echo "$am_cv_python_pythondir" | sed "s,^$am__strip_prefix,$PYTHON_PREFIX,"`
 
3731
+       ;;
 
3732
+     *)
 
3733
+       case $am_py_prefix in
 
3734
+         /usr|/System*) ;;
 
3735
+         *)
 
3736
+         am_cv_python_pythondir=$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages
 
3737
+         ;;
 
3738
+       esac
 
3739
+       ;;
 
3740
+     esac
 
3741
+    ])
 
3742
+  AC_SUBST([pythondir], [$am_cv_python_pythondir])
 
3743
 
 
3744
-     dnl Construct list of names of catalog files to be constructed.
 
3745
-     if test -n "$LINGUAS"; then
 
3746
-       for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done
 
3747
-     fi
 
3748
-   fi
 
3749
+  dnl pkgpythondir -- $PACKAGE directory under pythondir.  Was
 
3750
+  dnl   PYTHON_SITE_PACKAGE in previous betas, but this naming is
 
3751
+  dnl   more consistent with the rest of automake.
 
3752
 
 
3753
-   dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly
 
3754
-   dnl find the mkinstalldirs script in another subdir but ($top_srcdir).
 
3755
-   dnl Try to locate is.
 
3756
-   MKINSTALLDIRS=
 
3757
-   if test -n "$ac_aux_dir"; then
 
3758
-     MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs"
 
3759
-   fi
 
3760
-   if test -z "$MKINSTALLDIRS"; then
 
3761
-     MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs"
 
3762
-   fi
 
3763
-   AC_SUBST(MKINSTALLDIRS)
 
3764
+  AC_SUBST([pkgpythondir], [\${pythondir}/$PACKAGE])
 
3765
 
 
3766
-   dnl Generate list of files to be processed by xgettext which will
 
3767
-   dnl be included in po/Makefile.
 
3768
-   test -d po || mkdir po
 
3769
-   if test "x$srcdir" != "x."; then
 
3770
-     if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then
 
3771
-       posrcprefix="$srcdir/"
 
3772
+  dnl pyexecdir -- directory for installing python extension modules
 
3773
+  dnl   (shared libraries)
 
3774
+  dnl Query distutils for this directory.  distutils does not exist in
 
3775
+  dnl Python 1.5, so we fall back to the hardcoded directory if it
 
3776
+  dnl doesn't work.
 
3777
+  AC_CACHE_CHECK([for $am_display_PYTHON extension module directory],
 
3778
+    [am_cv_python_pyexecdir],
 
3779
+    [if test "x$exec_prefix" = xNONE
 
3780
+     then
 
3781
+       am_py_exec_prefix=$am_py_prefix
 
3782
      else
 
3783
-       posrcprefix="../$srcdir/"
 
3784
+       am_py_exec_prefix=$exec_prefix
 
3785
      fi
 
3786
-   else
 
3787
-     posrcprefix="../"
 
3788
-   fi
 
3789
-   rm -f po/POTFILES
 
3790
-   sed -e "/^#/d" -e "/^\$/d" -e "s,.*,        $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \
 
3791
-       < $srcdir/po/POTFILES.in > po/POTFILES
 
3792
-  ])
 
3793
-
 
3794
-# AM_GLIB_DEFINE_LOCALEDIR(VARIABLE)
 
3795
-# -------------------------------
 
3796
-# Define VARIABLE to the location where catalog files will
 
3797
-# be installed by po/Makefile.
 
3798
-glib_DEFUN([GLIB_DEFINE_LOCALEDIR],
 
3799
-[glib_REQUIRE([GLIB_GNU_GETTEXT])dnl
 
3800
-glib_save_prefix="$prefix"
 
3801
-glib_save_exec_prefix="$exec_prefix"
 
3802
-glib_save_datarootdir="$datarootdir"
 
3803
-test "x$prefix" = xNONE && prefix=$ac_default_prefix
 
3804
-test "x$exec_prefix" = xNONE && exec_prefix=$prefix
 
3805
-datarootdir=`eval echo "${datarootdir}"`
 
3806
-if test "x$CATOBJEXT" = "x.mo" ; then
 
3807
-  localedir=`eval echo "${libdir}/locale"`
 
3808
-else
 
3809
-  localedir=`eval echo "${datadir}/locale"`
 
3810
-fi
 
3811
-prefix="$glib_save_prefix"
 
3812
-exec_prefix="$glib_save_exec_prefix"
 
3813
-datarootdir="$glib_save_datarootdir"
 
3814
-AC_DEFINE_UNQUOTED($1, "$localedir",
 
3815
-  [Define the location where the catalogs will be installed])
 
3816
-])
 
3817
+     am_cv_python_pyexecdir=`$PYTHON -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(1,0,prefix='$am_py_exec_prefix'))" 2>/dev/null ||
 
3818
+     echo "$PYTHON_EXEC_PREFIX/lib/python$PYTHON_VERSION/site-packages"`
 
3819
+     case $am_cv_python_pyexecdir in
 
3820
+     $am_py_exec_prefix*)
 
3821
+       am__strip_prefix=`echo "$am_py_exec_prefix" | sed 's|.|.|g'`
 
3822
+       am_cv_python_pyexecdir=`echo "$am_cv_python_pyexecdir" | sed "s,^$am__strip_prefix,$PYTHON_EXEC_PREFIX,"`
 
3823
+       ;;
 
3824
+     *)
 
3825
+       case $am_py_exec_prefix in
 
3826
+         /usr|/System*) ;;
 
3827
+         *)
 
3828
+          am_cv_python_pyexecdir=$PYTHON_EXEC_PREFIX/lib/python$PYTHON_VERSION/site-packages
 
3829
+          ;;
 
3830
+       esac
 
3831
+       ;;
 
3832
+     esac
 
3833
+    ])
 
3834
+  AC_SUBST([pyexecdir], [$am_cv_python_pyexecdir])
 
3835
 
 
3836
-dnl
 
3837
-dnl Now the definitions that aclocal will find
 
3838
-dnl
 
3839
-ifdef(glib_configure_ac,[],[
 
3840
-AC_DEFUN([AM_GLIB_GNU_GETTEXT],[GLIB_GNU_GETTEXT($@)])
 
3841
-AC_DEFUN([AM_GLIB_DEFINE_LOCALEDIR],[GLIB_DEFINE_LOCALEDIR($@)])
 
3842
-])dnl
 
3843
+  dnl pkgpyexecdir -- $(pyexecdir)/$(PACKAGE)
 
3844
 
 
3845
-# GLIB_RUN_PROG(PROGRAM, TEST-FILE, [ACTION-IF-PASS], [ACTION-IF-FAIL])
 
3846
-# 
 
3847
-# Create a temporary file with TEST-FILE as its contents and pass the
 
3848
-# file name to PROGRAM.  Perform ACTION-IF-PASS if PROGRAM exits with
 
3849
-# 0 and perform ACTION-IF-FAIL for any other exit status.
 
3850
-AC_DEFUN([GLIB_RUN_PROG],
 
3851
-[cat >conftest.foo <<_ACEOF
 
3852
-$2
 
3853
-_ACEOF
 
3854
-if AC_RUN_LOG([$1 conftest.foo]); then
 
3855
-  m4_ifval([$3], [$3], [:])
 
3856
-m4_ifvaln([$4], [else $4])dnl
 
3857
-echo "$as_me: failed input was:" >&AS_MESSAGE_LOG_FD
 
3858
-sed 's/^/| /' conftest.foo >&AS_MESSAGE_LOG_FD
 
3859
-fi])
 
3860
+  AC_SUBST([pkgpyexecdir], [\${pyexecdir}/$PACKAGE])
 
3861
 
 
3862
+  dnl Run any user-specified action.
 
3863
+  $2
 
3864
+  fi
 
3865
 
 
3866
-# gnome-common.m4
 
3867
-#
 
3868
-# serial 3
 
3869
-# 
 
3870
+])
 
3871
 
 
3872
-dnl GNOME_COMMON_INIT
 
3873
 
 
3874
-AU_DEFUN([GNOME_COMMON_INIT],
 
3875
-[
 
3876
-  dnl this macro should come after AC_CONFIG_MACRO_DIR
 
3877
-  AC_BEFORE([AC_CONFIG_MACRO_DIR], [$0])
 
3878
+# AM_PYTHON_CHECK_VERSION(PROG, VERSION, [ACTION-IF-TRUE], [ACTION-IF-FALSE])
 
3879
+# ---------------------------------------------------------------------------
 
3880
+# Run ACTION-IF-TRUE if the Python interpreter PROG has version >= VERSION.
 
3881
+# Run ACTION-IF-FALSE otherwise.
 
3882
+# This test uses sys.hexversion instead of the string equivalent (first
 
3883
+# word of sys.version), in order to cope with versions such as 2.2c1.
 
3884
+# This supports Python 2.0 or higher. (2.0 was released on October 16, 2000).
 
3885
+AC_DEFUN([AM_PYTHON_CHECK_VERSION],
 
3886
+ [prog="import sys
 
3887
+# split strings by '.' and convert to numeric.  Append some zeros
 
3888
+# because we need at least 4 digits for the hex conversion.
 
3889
+# map returns an iterator in Python 3.0 and a list in 2.x
 
3890
+minver = list(map(int, '$2'.split('.'))) + [[0, 0, 0]]
 
3891
+minverhex = 0
 
3892
+# xrange is not present in Python 3.0 and range returns an iterator
 
3893
+for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[[i]]
 
3894
+sys.exit(sys.hexversion < minverhex)"
 
3895
+  AS_IF([AM_RUN_LOG([$1 -c "$prog"])], [$3], [$4])])
 
3896
 
 
3897
-  dnl ensure that when the Automake generated makefile calls aclocal,
 
3898
-  dnl it honours the $ACLOCAL_FLAGS environment variable
 
3899
-  ACLOCAL_AMFLAGS="\${ACLOCAL_FLAGS}"
 
3900
-  if test -n "$ac_macro_dir"; then
 
3901
-    ACLOCAL_AMFLAGS="-I $ac_macro_dir $ACLOCAL_AMFLAGS"
 
3902
-  fi
 
3903
+# Check to make sure that the build environment is sane.    -*- Autoconf -*-
 
3904
 
 
3905
-  AC_SUBST([ACLOCAL_AMFLAGS])
 
3906
-],
 
3907
-[[$0: This macro is deprecated. You should set put "ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}"
 
3908
-in your top-level Makefile.am, instead, where "m4" is the macro directory set
 
3909
-with AC_CONFIG_MACRO_DIR() in your configure.ac]])
 
3910
+# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008
 
3911
+# Free Software Foundation, Inc.
 
3912
+#
 
3913
+# This file is free software; the Free Software Foundation
 
3914
+# gives unlimited permission to copy and/or distribute it,
 
3915
+# with or without modifications, as long as this notice is preserved.
 
3916
 
 
3917
-AC_DEFUN([GNOME_DEBUG_CHECK],
 
3918
-[
 
3919
-       AC_ARG_ENABLE([debug],
 
3920
-                      AC_HELP_STRING([--enable-debug],
 
3921
-                                     [turn on debugging]),,
 
3922
-                      [enable_debug=no])
 
3923
+# serial 5
 
3924
 
 
3925
-       if test x$enable_debug = xyes ; then
 
3926
-           AC_DEFINE(GNOME_ENABLE_DEBUG, 1,
 
3927
-               [Enable additional debugging at the expense of performance and size])
 
3928
-       fi
 
3929
-])
 
3930
+# AM_SANITY_CHECK
 
3931
+# ---------------
 
3932
+AC_DEFUN([AM_SANITY_CHECK],
 
3933
+[AC_MSG_CHECKING([whether build environment is sane])
 
3934
+# Just in case
 
3935
+sleep 1
 
3936
+echo timestamp > conftest.file
 
3937
+# Reject unsafe characters in $srcdir or the absolute working directory
 
3938
+# name.  Accept space and tab only in the latter.
 
3939
+am_lf='
 
3940
+'
 
3941
+case `pwd` in
 
3942
+  *[[\\\"\#\$\&\'\`$am_lf]]*)
 
3943
+    AC_MSG_ERROR([unsafe absolute working directory name]);;
 
3944
+esac
 
3945
+case $srcdir in
 
3946
+  *[[\\\"\#\$\&\'\`$am_lf\ \   ]]*)
 
3947
+    AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);;
 
3948
+esac
 
3949
 
 
3950
-dnl GNOME_MAINTAINER_MODE_DEFINES ()
 
3951
-dnl define DISABLE_DEPRECATED
 
3952
-dnl
 
3953
-AC_DEFUN([GNOME_MAINTAINER_MODE_DEFINES],
 
3954
-[
 
3955
-       AC_REQUIRE([AM_MAINTAINER_MODE])
 
3956
+# Do `set' in a subshell so we don't clobber the current shell's
 
3957
+# arguments.  Must try -L first in case configure is actually a
 
3958
+# symlink; some systems play weird games with the mod time of symlinks
 
3959
+# (eg FreeBSD returns the mod time of the symlink's containing
 
3960
+# directory).
 
3961
+if (
 
3962
+   set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
 
3963
+   if test "$[*]" = "X"; then
 
3964
+      # -L didn't work.
 
3965
+      set X `ls -t "$srcdir/configure" conftest.file`
 
3966
+   fi
 
3967
+   rm -f conftest.file
 
3968
+   if test "$[*]" != "X $srcdir/configure conftest.file" \
 
3969
+      && test "$[*]" != "X conftest.file $srcdir/configure"; then
 
3970
 
 
3971
-       DISABLE_DEPRECATED=""
 
3972
-       if test $USE_MAINTAINER_MODE = yes; then
 
3973
-               DOMAINS="G ATK PANGO GDK GDK_PIXBUF GTK GCONF BONOBO BONOBO_UI GNOME LIBGLADE VTE GNOME_VFS WNCK LIBSOUP"
 
3974
-               for DOMAIN in $DOMAINS; do
 
3975
-                      DISABLE_DEPRECATED="$DISABLE_DEPRECATED -D${DOMAIN}_DISABLE_DEPRECATED -D${DOMAIN}_DISABLE_SINGLE_INCLUDES"
 
3976
-               done
 
3977
-       fi
 
3978
+      # If neither matched, then we have a broken ls.  This can happen
 
3979
+      # if, for instance, CONFIG_SHELL is bash and it inherits a
 
3980
+      # broken ls alias from the environment.  This has actually
 
3981
+      # happened.  Such a system could not be considered "sane".
 
3982
+      AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
 
3983
+alias in your environment])
 
3984
+   fi
 
3985
 
 
3986
-       AC_SUBST(DISABLE_DEPRECATED)
 
3987
-])
 
3988
+   test "$[2]" = conftest.file
 
3989
+   )
 
3990
+then
 
3991
+   # Ok.
 
3992
+   :
 
3993
+else
 
3994
+   AC_MSG_ERROR([newly created file is older than distributed files!
 
3995
+Check your system clock])
 
3996
+fi
 
3997
+AC_MSG_RESULT(yes)])
 
3998
 
 
3999
-dnl GNOME_COMPILE_WARNINGS
 
4000
-dnl Turn on many useful compiler warnings
 
4001
-dnl For now, only works on GCC
 
4002
-AC_DEFUN([GNOME_COMPILE_WARNINGS],[
 
4003
-    dnl ******************************
 
4004
-    dnl More compiler warnings
 
4005
-    dnl ******************************
 
4006
+# Copyright (C) 2009  Free Software Foundation, Inc.
 
4007
+#
 
4008
+# This file is free software; the Free Software Foundation
 
4009
+# gives unlimited permission to copy and/or distribute it,
 
4010
+# with or without modifications, as long as this notice is preserved.
 
4011
 
 
4012
-    AC_ARG_ENABLE(compile-warnings, 
 
4013
-                  AC_HELP_STRING([--enable-compile-warnings=@<:@no/minimum/yes/maximum/error@:>@],
 
4014
-                                 [Turn on compiler warnings]),,
 
4015
-                  [enable_compile_warnings="m4_default([$1],[yes])"])
 
4016
+# serial 1
 
4017
 
 
4018
-    warnCFLAGS=
 
4019
-    if test "x$GCC" != xyes; then
 
4020
-       enable_compile_warnings=no
 
4021
-    fi
 
4022
+# AM_SILENT_RULES([DEFAULT])
 
4023
+# --------------------------
 
4024
+# Enable less verbose build rules; with the default set to DEFAULT
 
4025
+# (`yes' being less verbose, `no' or empty being verbose).
 
4026
+AC_DEFUN([AM_SILENT_RULES],
 
4027
+[AC_ARG_ENABLE([silent-rules],
 
4028
+[  --enable-silent-rules          less verbose build output (undo: `make V=1')
 
4029
+  --disable-silent-rules         verbose build output (undo: `make V=0')])
 
4030
+case $enable_silent_rules in
 
4031
+yes) AM_DEFAULT_VERBOSITY=0;;
 
4032
+no)  AM_DEFAULT_VERBOSITY=1;;
 
4033
+*)   AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
 
4034
+esac
 
4035
+AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
 
4036
+AM_BACKSLASH='\'
 
4037
+AC_SUBST([AM_BACKSLASH])dnl
 
4038
+_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
 
4039
+])
 
4040
 
 
4041
-    warning_flags=
 
4042
-    realsave_CFLAGS="$CFLAGS"
 
4043
+# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
 
4044
+#
 
4045
+# This file is free software; the Free Software Foundation
 
4046
+# gives unlimited permission to copy and/or distribute it,
 
4047
+# with or without modifications, as long as this notice is preserved.
 
4048
 
 
4049
-    case "$enable_compile_warnings" in
 
4050
-    no)
 
4051
-       warning_flags=
 
4052
-       ;;
 
4053
-    minimum)
 
4054
-       warning_flags="-Wall"
 
4055
-       ;;
 
4056
-    yes)
 
4057
-       warning_flags="-Wall -Wmissing-prototypes"
 
4058
-       ;;
 
4059
-    maximum|error)
 
4060
-       warning_flags="-Wall -Wmissing-prototypes -Wnested-externs -Wpointer-arith"
 
4061
-       CFLAGS="$warning_flags $CFLAGS"
 
4062
-       for option in -Wno-sign-compare; do
 
4063
-               SAVE_CFLAGS="$CFLAGS"
 
4064
-               CFLAGS="$CFLAGS $option"
 
4065
-               AC_MSG_CHECKING([whether gcc understands $option])
 
4066
-               AC_TRY_COMPILE([], [],
 
4067
-                       has_option=yes,
 
4068
-                       has_option=no,)
 
4069
-               CFLAGS="$SAVE_CFLAGS"
 
4070
-               AC_MSG_RESULT($has_option)
 
4071
-               if test $has_option = yes; then
 
4072
-                 warning_flags="$warning_flags $option"
 
4073
-               fi
 
4074
-               unset has_option
 
4075
-               unset SAVE_CFLAGS
 
4076
-       done
 
4077
-       unset option
 
4078
-       if test "$enable_compile_warnings" = "error" ; then
 
4079
-           warning_flags="$warning_flags -Werror"
 
4080
-       fi
 
4081
-       ;;
 
4082
-    *)
 
4083
-       AC_MSG_ERROR(Unknown argument '$enable_compile_warnings' to --enable-compile-warnings)
 
4084
-       ;;
 
4085
-    esac
 
4086
-    CFLAGS="$realsave_CFLAGS"
 
4087
-    AC_MSG_CHECKING(what warning flags to pass to the C compiler)
 
4088
-    AC_MSG_RESULT($warning_flags)
 
4089
+# AM_PROG_INSTALL_STRIP
 
4090
+# ---------------------
 
4091
+# One issue with vendor `install' (even GNU) is that you can't
 
4092
+# specify the program used to strip binaries.  This is especially
 
4093
+# annoying in cross-compiling environments, where the build's strip
 
4094
+# is unlikely to handle the host's binaries.
 
4095
+# Fortunately install-sh will honor a STRIPPROG variable, so we
 
4096
+# always use install-sh in `make install-strip', and initialize
 
4097
+# STRIPPROG with the value of the STRIP variable (set by the user).
 
4098
+AC_DEFUN([AM_PROG_INSTALL_STRIP],
 
4099
+[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
 
4100
+# Installed binaries are usually stripped using `strip' when the user
 
4101
+# run `make install-strip'.  However `strip' might not be the right
 
4102
+# tool to use in cross-compilation environments, therefore Automake
 
4103
+# will honor the `STRIP' environment variable to overrule this program.
 
4104
+dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
 
4105
+if test "$cross_compiling" != no; then
 
4106
+  AC_CHECK_TOOL([STRIP], [strip], :)
 
4107
+fi
 
4108
+INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
 
4109
+AC_SUBST([INSTALL_STRIP_PROGRAM])])
 
4110
 
 
4111
-    AC_ARG_ENABLE(iso-c,
 
4112
-                  AC_HELP_STRING([--enable-iso-c],
 
4113
-                                 [Try to warn if code is not ISO C ]),,
 
4114
-                  [enable_iso_c=no])
 
4115
+# Copyright (C) 2006, 2008  Free Software Foundation, Inc.
 
4116
+#
 
4117
+# This file is free software; the Free Software Foundation
 
4118
+# gives unlimited permission to copy and/or distribute it,
 
4119
+# with or without modifications, as long as this notice is preserved.
 
4120
 
 
4121
-    AC_MSG_CHECKING(what language compliance flags to pass to the C compiler)
 
4122
-    complCFLAGS=
 
4123
-    if test "x$enable_iso_c" != "xno"; then
 
4124
-       if test "x$GCC" = "xyes"; then
 
4125
-       case " $CFLAGS " in
 
4126
-           *[\ \       ]-ansi[\ \      ]*) ;;
 
4127
-           *) complCFLAGS="$complCFLAGS -ansi" ;;
 
4128
-       esac
 
4129
-       case " $CFLAGS " in
 
4130
-           *[\ \       ]-pedantic[\ \  ]*) ;;
 
4131
-           *) complCFLAGS="$complCFLAGS -pedantic" ;;
 
4132
-       esac
 
4133
-       fi
 
4134
-    fi
 
4135
-    AC_MSG_RESULT($complCFLAGS)
 
4136
+# serial 2
 
4137
 
 
4138
-    WARN_CFLAGS="$warning_flags $complCFLAGS"
 
4139
-    AC_SUBST(WARN_CFLAGS)
 
4140
-])
 
4141
+# _AM_SUBST_NOTMAKE(VARIABLE)
 
4142
+# ---------------------------
 
4143
+# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
 
4144
+# This macro is traced by Automake.
 
4145
+AC_DEFUN([_AM_SUBST_NOTMAKE])
 
4146
 
 
4147
-dnl For C++, do basically the same thing.
 
4148
+# AM_SUBST_NOTMAKE(VARIABLE)
 
4149
+# ---------------------------
 
4150
+# Public sister of _AM_SUBST_NOTMAKE.
 
4151
+AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
 
4152
 
 
4153
-AC_DEFUN([GNOME_CXX_WARNINGS],[
 
4154
-  AC_ARG_ENABLE(cxx-warnings,
 
4155
-                AC_HELP_STRING([--enable-cxx-warnings=@<:@no/minimum/yes@:>@]
 
4156
-                               [Turn on compiler warnings.]),,
 
4157
-                [enable_cxx_warnings="m4_default([$1],[minimum])"])
 
4158
+# Check how to create a tarball.                            -*- Autoconf -*-
 
4159
 
 
4160
-  AC_MSG_CHECKING(what warning flags to pass to the C++ compiler)
 
4161
-  warnCXXFLAGS=
 
4162
-  if test "x$GXX" != xyes; then
 
4163
-    enable_cxx_warnings=no
 
4164
-  fi
 
4165
-  if test "x$enable_cxx_warnings" != "xno"; then
 
4166
-    if test "x$GXX" = "xyes"; then
 
4167
-      case " $CXXFLAGS " in
 
4168
-      *[\ \    ]-Wall[\ \      ]*) ;;
 
4169
-      *) warnCXXFLAGS="-Wall -Wno-unused" ;;
 
4170
-      esac
 
4171
+# Copyright (C) 2004, 2005  Free Software Foundation, Inc.
 
4172
+#
 
4173
+# This file is free software; the Free Software Foundation
 
4174
+# gives unlimited permission to copy and/or distribute it,
 
4175
+# with or without modifications, as long as this notice is preserved.
 
4176
 
 
4177
-      ## -W is not all that useful.  And it cannot be controlled
 
4178
-      ## with individual -Wno-xxx flags, unlike -Wall
 
4179
-      if test "x$enable_cxx_warnings" = "xyes"; then
 
4180
-       warnCXXFLAGS="$warnCXXFLAGS -Wshadow -Woverloaded-virtual"
 
4181
-      fi
 
4182
-    fi
 
4183
-  fi
 
4184
-  AC_MSG_RESULT($warnCXXFLAGS)
 
4185
+# serial 2
 
4186
 
 
4187
-   AC_ARG_ENABLE(iso-cxx,
 
4188
-                 AC_HELP_STRING([--enable-iso-cxx],
 
4189
-                                [Try to warn if code is not ISO C++ ]),,
 
4190
-                 [enable_iso_cxx=no])
 
4191
+# _AM_PROG_TAR(FORMAT)
 
4192
+# --------------------
 
4193
+# Check how to create a tarball in format FORMAT.
 
4194
+# FORMAT should be one of `v7', `ustar', or `pax'.
 
4195
+#
 
4196
+# Substitute a variable $(am__tar) that is a command
 
4197
+# writing to stdout a FORMAT-tarball containing the directory
 
4198
+# $tardir.
 
4199
+#     tardir=directory && $(am__tar) > result.tar
 
4200
+#
 
4201
+# Substitute a variable $(am__untar) that extract such
 
4202
+# a tarball read from stdin.
 
4203
+#     $(am__untar) < result.tar
 
4204
+AC_DEFUN([_AM_PROG_TAR],
 
4205
+[# Always define AMTAR for backward compatibility.
 
4206
+AM_MISSING_PROG([AMTAR], [tar])
 
4207
+m4_if([$1], [v7],
 
4208
+     [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
 
4209
+     [m4_case([$1], [ustar],, [pax],,
 
4210
+              [m4_fatal([Unknown tar format])])
 
4211
+AC_MSG_CHECKING([how to create a $1 tar archive])
 
4212
+# Loop over all known methods to create a tar archive until one works.
 
4213
+_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
 
4214
+_am_tools=${am_cv_prog_tar_$1-$_am_tools}
 
4215
+# Do not fold the above two line into one, because Tru64 sh and
 
4216
+# Solaris sh will not grok spaces in the rhs of `-'.
 
4217
+for _am_tool in $_am_tools
 
4218
+do
 
4219
+  case $_am_tool in
 
4220
+  gnutar)
 
4221
+    for _am_tar in tar gnutar gtar;
 
4222
+    do
 
4223
+      AM_RUN_LOG([$_am_tar --version]) && break
 
4224
+    done
 
4225
+    am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
 
4226
+    am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
 
4227
+    am__untar="$_am_tar -xf -"
 
4228
+    ;;
 
4229
+  plaintar)
 
4230
+    # Must skip GNU tar: if it does not support --format= it doesn't create
 
4231
+    # ustar tarball either.
 
4232
+    (tar --version) >/dev/null 2>&1 && continue
 
4233
+    am__tar='tar chf - "$$tardir"'
 
4234
+    am__tar_='tar chf - "$tardir"'
 
4235
+    am__untar='tar xf -'
 
4236
+    ;;
 
4237
+  pax)
 
4238
+    am__tar='pax -L -x $1 -w "$$tardir"'
 
4239
+    am__tar_='pax -L -x $1 -w "$tardir"'
 
4240
+    am__untar='pax -r'
 
4241
+    ;;
 
4242
+  cpio)
 
4243
+    am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
 
4244
+    am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
 
4245
+    am__untar='cpio -i -H $1 -d'
 
4246
+    ;;
 
4247
+  none)
 
4248
+    am__tar=false
 
4249
+    am__tar_=false
 
4250
+    am__untar=false
 
4251
+    ;;
 
4252
+  esac
 
4253
 
 
4254
-   AC_MSG_CHECKING(what language compliance flags to pass to the C++ compiler)
 
4255
-   complCXXFLAGS=
 
4256
-   if test "x$enable_iso_cxx" != "xno"; then
 
4257
-     if test "x$GXX" = "xyes"; then
 
4258
-      case " $CXXFLAGS " in
 
4259
-      *[\ \    ]-ansi[\ \      ]*) ;;
 
4260
-      *) complCXXFLAGS="$complCXXFLAGS -ansi" ;;
 
4261
-      esac
 
4262
+  # If the value was cached, stop now.  We just wanted to have am__tar
 
4263
+  # and am__untar set.
 
4264
+  test -n "${am_cv_prog_tar_$1}" && break
 
4265
 
 
4266
-      case " $CXXFLAGS " in
 
4267
-      *[\ \    ]-pedantic[\ \  ]*) ;;
 
4268
-      *) complCXXFLAGS="$complCXXFLAGS -pedantic" ;;
 
4269
-      esac
 
4270
-     fi
 
4271
-   fi
 
4272
-  AC_MSG_RESULT($complCXXFLAGS)
 
4273
+  # tar/untar a dummy directory, and stop if the command works
 
4274
+  rm -rf conftest.dir
 
4275
+  mkdir conftest.dir
 
4276
+  echo GrepMe > conftest.dir/file
 
4277
+  AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
 
4278
+  rm -rf conftest.dir
 
4279
+  if test -s conftest.tar; then
 
4280
+    AM_RUN_LOG([$am__untar <conftest.tar])
 
4281
+    grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
 
4282
+  fi
 
4283
+done
 
4284
+rm -rf conftest.dir
 
4285
 
 
4286
-  WARN_CXXFLAGS="$CXXFLAGS $warnCXXFLAGS $complCXXFLAGS"
 
4287
-  AC_SUBST(WARN_CXXFLAGS)
 
4288
-])
 
4289
+AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
 
4290
+AC_MSG_RESULT([$am_cv_prog_tar_$1])])
 
4291
+AC_SUBST([am__tar])
 
4292
+AC_SUBST([am__untar])
 
4293
+]) # _AM_PROG_TAR
 
4294
 
 
4295
 m4_include([m4/gtk-doc.m4])
 
4296
 m4_include([m4/intltool.m4])
 
4297
--- libgweather-2.30.3.orig/configure
 
4298
+++ libgweather-2.30.3/configure
 
4299
@@ -811,8 +811,6 @@ GTK_LIBS
 
4300
 GTK_CFLAGS
 
4301
 WARN_CFLAGS
 
4302
 COMPRESS_EXT
 
4303
-USE_ONE_BIG_XML_FALSE
 
4304
-USE_ONE_BIG_XML_TRUE
 
4305
 GCONFTOOL
 
4306
 OTOOL64
 
4307
 OTOOL
 
4308
@@ -974,7 +972,6 @@ with_pic
 
4309
 enable_fast_install
 
4310
 with_gnu_ld
 
4311
 enable_libtool_lock
 
4312
-enable_all_translations_in_one_xml
 
4313
 enable_locations_compression
 
4314
 enable_compile_warnings
 
4315
 enable_iso_c
 
4316
@@ -1646,9 +1643,6 @@ Optional Features:
 
4317
   --enable-fast-install[=PKGS]
 
4318
                           optimize for fast installation [default=yes]
 
4319
   --disable-libtool-lock  avoid locking (might break parallel builds)
 
4320
-  --enable-all-translations-in-one-xml
 
4321
-                          Put all translations in a big Locations.xml file
 
4322
-                          (slow to parse)
 
4323
   --enable-locations-compression
 
4324
                           Compress Locations.xml files
 
4325
   --enable-compile-warnings=[no/minimum/yes/maximum/error]
 
4326
@@ -2504,7 +2498,7 @@ $as_echo "$as_me: loading site script $a
 
4327
       || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
4328
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
4329
 as_fn_error $? "failed to load site script $ac_site_file
 
4330
-See \`config.log' for more details" "$LINENO" 5; }
 
4331
+See \`config.log' for more details" "$LINENO" 5 ; }
 
4332
   fi
 
4333
 done
 
4334
 
 
4335
@@ -2732,11 +2726,11 @@ am_lf='
 
4336
 '
 
4337
 case `pwd` in
 
4338
   *[\\\"\#\$\&\'\`$am_lf]*)
 
4339
-    as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;;
 
4340
+    as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5 ;;
 
4341
 esac
 
4342
 case $srcdir in
 
4343
   *[\\\"\#\$\&\'\`$am_lf\ \    ]*)
 
4344
-    as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;;
 
4345
+    as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5 ;;
 
4346
 esac
 
4347
 
 
4348
 # Do `set' in a subshell so we don't clobber the current shell's
 
4349
@@ -3151,7 +3145,7 @@ fi
 
4350
 $as_echo "$ac_cv_build" >&6; }
 
4351
 case $ac_cv_build in
 
4352
 *-*-*) ;;
 
4353
-*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;;
 
4354
+*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5 ;;
 
4355
 esac
 
4356
 build=$ac_cv_build
 
4357
 ac_save_IFS=$IFS; IFS='-'
 
4358
@@ -3184,7 +3178,7 @@ fi
 
4359
 $as_echo "$ac_cv_host" >&6; }
 
4360
 case $ac_cv_host in
 
4361
 *-*-*) ;;
 
4362
-*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;;
 
4363
+*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5 ;;
 
4364
 esac
 
4365
 host=$ac_cv_host
 
4366
 ac_save_IFS=$IFS; IFS='-'
 
4367
@@ -3265,6 +3259,10 @@ fi
 
4368
 
 
4369
 
 
4370
 
 
4371
+ac_config_commands="$ac_config_commands default-1"
 
4372
+
 
4373
+
 
4374
+
 
4375
 
 
4376
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5
 
4377
 $as_echo_n "checking whether NLS is requested... " >&6; }
 
4378
@@ -3642,7 +3640,7 @@ fi
 
4379
 test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
4380
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
4381
 as_fn_error $? "no acceptable C compiler found in \$PATH
 
4382
-See \`config.log' for more details" "$LINENO" 5; }
 
4383
+See \`config.log' for more details" "$LINENO" 5 ; }
 
4384
 
 
4385
 # Provide some information about the compiler.
 
4386
 $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
 
4387
@@ -3757,7 +3755,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
 
4388
 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
4389
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
4390
 as_fn_error 77 "C compiler cannot create executables
 
4391
-See \`config.log' for more details" "$LINENO" 5; }
 
4392
+See \`config.log' for more details" "$LINENO" 5 ; }
 
4393
 else
 
4394
   { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 
4395
 $as_echo "yes" >&6; }
 
4396
@@ -3800,7 +3798,7 @@ else
 
4397
   { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
4398
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
4399
 as_fn_error $? "cannot compute suffix of executables: cannot compile and link
 
4400
-See \`config.log' for more details" "$LINENO" 5; }
 
4401
+See \`config.log' for more details" "$LINENO" 5 ; }
 
4402
 fi
 
4403
 rm -f conftest conftest$ac_cv_exeext
 
4404
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
 
4405
@@ -3859,7 +3857,7 @@ $as_echo "$ac_try_echo"; } >&5
 
4406
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
4407
 as_fn_error $? "cannot run C compiled programs.
 
4408
 If you meant to cross compile, use \`--host'.
 
4409
-See \`config.log' for more details" "$LINENO" 5; }
 
4410
+See \`config.log' for more details" "$LINENO" 5 ; }
 
4411
     fi
 
4412
   fi
 
4413
 fi
 
4414
@@ -3911,7 +3909,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
 
4415
 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
4416
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
4417
 as_fn_error $? "cannot compute suffix of object files: cannot compile
 
4418
-See \`config.log' for more details" "$LINENO" 5; }
 
4419
+See \`config.log' for more details" "$LINENO" 5 ; }
 
4420
 fi
 
4421
 rm -f conftest.$ac_cv_objext conftest.$ac_ext
 
4422
 fi
 
4423
@@ -5224,7 +5222,7 @@ fi
 
4424
 test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
4425
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
4426
 as_fn_error $? "no acceptable C compiler found in \$PATH
 
4427
-See \`config.log' for more details" "$LINENO" 5; }
 
4428
+See \`config.log' for more details" "$LINENO" 5 ; }
 
4429
 
 
4430
 # Provide some information about the compiler.
 
4431
 $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
 
4432
@@ -5900,7 +5898,7 @@ else
 
4433
   { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
4434
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
4435
 as_fn_error $? "C preprocessor \"$CPP\" fails sanity check
 
4436
-See \`config.log' for more details" "$LINENO" 5; }
 
4437
+See \`config.log' for more details" "$LINENO" 5 ; }
 
4438
 fi
 
4439
 
 
4440
 ac_ext=c
 
4441
@@ -6631,13 +6629,13 @@ if test "${lt_cv_nm_interface+set}" = se
 
4442
 else
 
4443
   lt_cv_nm_interface="BSD nm"
 
4444
   echo "int some_variable = 0;" > conftest.$ac_ext
 
4445
-  (eval echo "\"\$as_me:6634: $ac_compile\"" >&5)
 
4446
+  (eval echo "\"\$as_me:6632: $ac_compile\"" >&5)
 
4447
   (eval "$ac_compile" 2>conftest.err)
 
4448
   cat conftest.err >&5
 
4449
-  (eval echo "\"\$as_me:6637: $NM \\\"conftest.$ac_objext\\\"\"" >&5)
 
4450
+  (eval echo "\"\$as_me:6635: $NM \\\"conftest.$ac_objext\\\"\"" >&5)
 
4451
   (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
 
4452
   cat conftest.err >&5
 
4453
-  (eval echo "\"\$as_me:6640: output\"" >&5)
 
4454
+  (eval echo "\"\$as_me:6638: output\"" >&5)
 
4455
   cat conftest.out >&5
 
4456
   if $GREP 'External.*some_variable' conftest.out > /dev/null; then
 
4457
     lt_cv_nm_interface="MS dumpbin"
 
4458
@@ -7103,11 +7101,11 @@ irix5* | irix6* | nonstopux*)
 
4459
   ;;
 
4460
 
 
4461
 # This must be Linux ELF.
 
4462
-linux* | k*bsd*-gnu)
 
4463
+linux* | k*bsd*-gnu | kopensolaris*-gnu)
 
4464
   lt_cv_deplibs_check_method=pass_all
 
4465
   ;;
 
4466
 
 
4467
-netbsd*)
 
4468
+netbsd* | netbsdelf*-gnu)
 
4469
   if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
 
4470
     lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$'
 
4471
   else
 
4472
@@ -7842,7 +7840,7 @@ ia64-*-hpux*)
 
4473
   ;;
 
4474
 *-*-irix6*)
 
4475
   # Find out which ABI we are using.
 
4476
-  echo '#line 7845 "configure"' > conftest.$ac_ext
 
4477
+  echo '#line 7843 "configure"' > conftest.$ac_ext
 
4478
   if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5
 
4479
   (eval $ac_compile) 2>&5
 
4480
   ac_status=$?
 
4481
@@ -9121,11 +9119,11 @@ else
 
4482
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
 
4483
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
4484
    -e 's:$: $lt_compiler_flag:'`
 
4485
-   (eval echo "\"\$as_me:9124: $lt_compile\"" >&5)
 
4486
+   (eval echo "\"\$as_me:9122: $lt_compile\"" >&5)
 
4487
    (eval "$lt_compile" 2>conftest.err)
 
4488
    ac_status=$?
 
4489
    cat conftest.err >&5
 
4490
-   echo "$as_me:9128: \$? = $ac_status" >&5
 
4491
+   echo "$as_me:9126: \$? = $ac_status" >&5
 
4492
    if (exit $ac_status) && test -s "$ac_outfile"; then
 
4493
      # The compiler can only warn and ignore the option if not recognized
 
4494
      # So say no if there are warnings other than the usual output.
 
4495
@@ -9290,7 +9288,7 @@ $as_echo_n "checking for $compiler optio
 
4496
       lt_prog_compiler_static='-non_shared'
 
4497
       ;;
 
4498
 
 
4499
-    linux* | k*bsd*-gnu)
 
4500
+    linux* | k*bsd*-gnu | kopensolaris*-gnu)
 
4501
       case $cc_basename in
 
4502
       # old Intel for x86_64 which still supported -KPIC.
 
4503
       ecc*)
 
4504
@@ -9460,11 +9458,11 @@ else
 
4505
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
 
4506
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
4507
    -e 's:$: $lt_compiler_flag:'`
 
4508
-   (eval echo "\"\$as_me:9463: $lt_compile\"" >&5)
 
4509
+   (eval echo "\"\$as_me:9461: $lt_compile\"" >&5)
 
4510
    (eval "$lt_compile" 2>conftest.err)
 
4511
    ac_status=$?
 
4512
    cat conftest.err >&5
 
4513
-   echo "$as_me:9467: \$? = $ac_status" >&5
 
4514
+   echo "$as_me:9465: \$? = $ac_status" >&5
 
4515
    if (exit $ac_status) && test -s "$ac_outfile"; then
 
4516
      # The compiler can only warn and ignore the option if not recognized
 
4517
      # So say no if there are warnings other than the usual output.
 
4518
@@ -9565,11 +9563,11 @@ else
 
4519
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
 
4520
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
4521
    -e 's:$: $lt_compiler_flag:'`
 
4522
-   (eval echo "\"\$as_me:9568: $lt_compile\"" >&5)
 
4523
+   (eval echo "\"\$as_me:9566: $lt_compile\"" >&5)
 
4524
    (eval "$lt_compile" 2>out/conftest.err)
 
4525
    ac_status=$?
 
4526
    cat out/conftest.err >&5
 
4527
-   echo "$as_me:9572: \$? = $ac_status" >&5
 
4528
+   echo "$as_me:9570: \$? = $ac_status" >&5
 
4529
    if (exit $ac_status) && test -s out/conftest2.$ac_objext
 
4530
    then
 
4531
      # The compiler can only warn and ignore the option if not recognized
 
4532
@@ -9620,11 +9618,11 @@ else
 
4533
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
 
4534
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
4535
    -e 's:$: $lt_compiler_flag:'`
 
4536
-   (eval echo "\"\$as_me:9623: $lt_compile\"" >&5)
 
4537
+   (eval echo "\"\$as_me:9621: $lt_compile\"" >&5)
 
4538
    (eval "$lt_compile" 2>out/conftest.err)
 
4539
    ac_status=$?
 
4540
    cat out/conftest.err >&5
 
4541
-   echo "$as_me:9627: \$? = $ac_status" >&5
 
4542
+   echo "$as_me:9625: \$? = $ac_status" >&5
 
4543
    if (exit $ac_status) && test -s out/conftest2.$ac_objext
 
4544
    then
 
4545
      # The compiler can only warn and ignore the option if not recognized
 
4546
@@ -9739,6 +9737,9 @@ $as_echo_n "checking whether the $compil
 
4547
   openbsd*)
 
4548
     with_gnu_ld=no
 
4549
     ;;
 
4550
+  linux* | k*bsd*-gnu)
 
4551
+    link_all_deplibs=no
 
4552
+    ;;
 
4553
   esac
 
4554
 
 
4555
   ld_shlibs=yes
 
4556
@@ -9760,6 +9761,7 @@ $as_echo_n "checking whether the $compil
 
4557
     fi
 
4558
     supports_anon_versioning=no
 
4559
     case `$LD -v 2>&1` in
 
4560
+      *GNU\ gold*) supports_anon_versioning=yes ;;
 
4561
       *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11
 
4562
       *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ...
 
4563
       *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ...
 
4564
@@ -9851,7 +9853,7 @@ _LT_EOF
 
4565
       archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
 
4566
       ;;
 
4567
 
 
4568
-    gnu* | linux* | tpf* | k*bsd*-gnu)
 
4569
+    gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu)
 
4570
       tmp_diet=no
 
4571
       if test "$host_os" = linux-dietlibc; then
 
4572
        case $cc_basename in
 
4573
@@ -9921,7 +9923,7 @@ _LT_EOF
 
4574
       fi
 
4575
       ;;
 
4576
 
 
4577
-    netbsd*)
 
4578
+    netbsd* | netbsdelf*-gnu)
 
4579
       if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
 
4580
        archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
 
4581
        wlarc=
 
4582
@@ -10096,6 +10098,7 @@ _LT_EOF
 
4583
        if test "$aix_use_runtimelinking" = yes; then
 
4584
          shared_flag="$shared_flag "'${wl}-G'
 
4585
        fi
 
4586
+       link_all_deplibs=no
 
4587
       else
 
4588
        # not using gcc
 
4589
        if test "$host_cpu" = ia64; then
 
4590
@@ -10422,7 +10425,7 @@ rm -f core conftest.err conftest.$ac_obj
 
4591
       link_all_deplibs=yes
 
4592
       ;;
 
4593
 
 
4594
-    netbsd*)
 
4595
+    netbsd* | netbsdelf*-gnu)
 
4596
       if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
 
4597
        archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out
 
4598
       else
 
4599
@@ -11312,7 +11315,7 @@ linux*oldld* | linux*aout* | linux*coff*
 
4600
   ;;
 
4601
 
 
4602
 # This must be Linux ELF.
 
4603
-linux* | k*bsd*-gnu)
 
4604
+linux* | k*bsd*-gnu | kopensolaris*-gnu)
 
4605
   version_type=linux
 
4606
   need_lib_prefix=no
 
4607
   need_version=no
 
4608
@@ -11367,6 +11370,18 @@ rm -f core conftest.err conftest.$ac_obj
 
4609
   dynamic_linker='GNU/Linux ld.so'
 
4610
   ;;
 
4611
 
 
4612
+netbsdelf*-gnu)
 
4613
+  version_type=linux
 
4614
+  need_lib_prefix=no
 
4615
+  need_version=no
 
4616
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
 
4617
+  soname_spec='${libname}${release}${shared_ext}$major'
 
4618
+  shlibpath_var=LD_LIBRARY_PATH
 
4619
+  shlibpath_overrides_runpath=no
 
4620
+  hardcode_into_libs=yes
 
4621
+  dynamic_linker='NetBSD ld.elf_so'
 
4622
+  ;;
 
4623
+
 
4624
 netbsd*)
 
4625
   version_type=sunos
 
4626
   need_lib_prefix=no
 
4627
@@ -11987,7 +12002,7 @@ else
 
4628
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
 
4629
   lt_status=$lt_dlunknown
 
4630
   cat > conftest.$ac_ext <<_LT_EOF
 
4631
-#line 11990 "configure"
 
4632
+#line 12005 "configure"
 
4633
 #include "confdefs.h"
 
4634
 
 
4635
 #if HAVE_DLFCN_H
 
4636
@@ -12083,7 +12098,7 @@ else
 
4637
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
 
4638
   lt_status=$lt_dlunknown
 
4639
   cat > conftest.$ac_ext <<_LT_EOF
 
4640
-#line 12086 "configure"
 
4641
+#line 12101 "configure"
 
4642
 #include "confdefs.h"
 
4643
 
 
4644
 #if HAVE_DLFCN_H
 
4645
@@ -12351,22 +12366,6 @@ fi
 
4646
 
 
4647
 
 
4648
 
 
4649
-# Check whether --enable-all-translations-in-one-xml was given.
 
4650
-if test "${enable_all_translations_in_one_xml+set}" = set; then :
 
4651
-  enableval=$enable_all_translations_in_one_xml; enable_big_xml=yes
 
4652
-else
 
4653
-  enable_big_xml=no
 
4654
-fi
 
4655
-
 
4656
- if test "x$enable_big_xml" = "xyes"; then
 
4657
-  USE_ONE_BIG_XML_TRUE=
 
4658
-  USE_ONE_BIG_XML_FALSE='#'
 
4659
-else
 
4660
-  USE_ONE_BIG_XML_TRUE='#'
 
4661
-  USE_ONE_BIG_XML_FALSE=
 
4662
-fi
 
4663
-
 
4664
-
 
4665
 # Check whether --enable-locations-compression was given.
 
4666
 if test "${enable_locations_compression+set}" = set; then :
 
4667
   enableval=$enable_locations_compression; enable_locations_compression=yes
 
4668
@@ -12631,7 +12630,7 @@ and GTK_LIBS to avoid the need to call p
 
4669
 See the pkg-config man page for more details.
 
4670
 
 
4671
 To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
4672
-See \`config.log' for more details" "$LINENO" 5; }
 
4673
+See \`config.log' for more details" "$LINENO" 5 ; }
 
4674
 else
 
4675
        GTK_CFLAGS=$pkg_cv_GTK_CFLAGS
 
4676
        GTK_LIBS=$pkg_cv_GTK_LIBS
 
4677
@@ -12724,7 +12723,7 @@ and LIBXML_LIBS to avoid the need to cal
 
4678
 See the pkg-config man page for more details.
 
4679
 
 
4680
 To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
4681
-See \`config.log' for more details" "$LINENO" 5; }
 
4682
+See \`config.log' for more details" "$LINENO" 5 ; }
 
4683
 else
 
4684
        LIBXML_CFLAGS=$pkg_cv_LIBXML_CFLAGS
 
4685
        LIBXML_LIBS=$pkg_cv_LIBXML_LIBS
 
4686
@@ -12873,7 +12872,7 @@ and LIBSOUP_LIBS to avoid the need to ca
 
4687
 See the pkg-config man page for more details.
 
4688
 
 
4689
 To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
4690
-See \`config.log' for more details" "$LINENO" 5; }
 
4691
+See \`config.log' for more details" "$LINENO" 5 ; }
 
4692
 else
 
4693
        LIBSOUP_CFLAGS=$pkg_cv_LIBSOUP_CFLAGS
 
4694
        LIBSOUP_LIBS=$pkg_cv_LIBSOUP_LIBS
 
4695
@@ -12965,7 +12964,7 @@ and LIBSOUP_LIBS to avoid the need to ca
 
4696
 See the pkg-config man page for more details.
 
4697
 
 
4698
 To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
4699
-See \`config.log' for more details" "$LINENO" 5; }
 
4700
+See \`config.log' for more details" "$LINENO" 5 ; }
 
4701
 else
 
4702
        LIBSOUP_CFLAGS=$pkg_cv_LIBSOUP_CFLAGS
 
4703
        LIBSOUP_LIBS=$pkg_cv_LIBSOUP_LIBS
 
4704
@@ -13068,7 +13067,7 @@ and GCONF_LIBS to avoid the need to call
 
4705
 See the pkg-config man page for more details.
 
4706
 
 
4707
 To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
4708
-See \`config.log' for more details" "$LINENO" 5; }
 
4709
+See \`config.log' for more details" "$LINENO" 5 ; }
 
4710
 else
 
4711
        GCONF_CFLAGS=$pkg_cv_GCONF_CFLAGS
 
4712
        GCONF_LIBS=$pkg_cv_GCONF_LIBS
 
4713
@@ -13116,7 +13115,7 @@ $as_echo "Using $GCONF_SCHEMA_FILE_DIR a
 
4714
 if test "${enable_schemas_install+set}" = set; then :
 
4715
   enableval=$enable_schemas_install; case ${enableval} in
 
4716
        yes|no) ;;
 
4717
-       *) as_fn_error $? "bad value ${enableval} for --enable-schemas-install" "$LINENO" 5 ;;
 
4718
+       *) as_fn_error $? "bad value ${enableval} for --enable-schemas-install" "$LINENO" 5  ;;
 
4719
       esac
 
4720
 fi
 
4721
 
 
4722
@@ -14115,7 +14114,7 @@ $as_echo "found xgettext program is not
 
4723
     # We need to process the po/ directory.
 
4724
     POSUB=po
 
4725
 
 
4726
-    ac_config_commands="$ac_config_commands default-1"
 
4727
+    ac_config_commands="$ac_config_commands default-2"
 
4728
 
 
4729
 
 
4730
                 for lang in $ALL_LINGUAS; do
 
4731
@@ -14632,7 +14631,7 @@ and PYGOBJECT_LIBS to avoid the need to
 
4732
 See the pkg-config man page for more details.
 
4733
 
 
4734
 To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
4735
-See \`config.log' for more details" "$LINENO" 5; }
 
4736
+See \`config.log' for more details" "$LINENO" 5 ; }
 
4737
 else
 
4738
        PYGOBJECT_CFLAGS=$pkg_cv_PYGOBJECT_CFLAGS
 
4739
        PYGOBJECT_LIBS=$pkg_cv_PYGOBJECT_LIBS
 
4740
@@ -14894,7 +14893,7 @@ fi
 
4741
 
 
4742
 
 
4743
 
 
4744
-ac_config_files="$ac_config_files Makefile doc/Makefile po/Makefile.in po-locations/Makefile libgweather/Makefile libgweather/gweather.pc libgweather/gweather-uninstalled.pc data/Makefile python/Makefile icons/Makefile"
 
4745
+ac_config_files="$ac_config_files Makefile doc/Makefile po/Makefile.in po-locations/Makefile.in libgweather/Makefile libgweather/gweather.pc libgweather/gweather-uninstalled.pc data/Makefile python/Makefile icons/Makefile"
 
4746
 
 
4747
 cat >confcache <<\_ACEOF
 
4748
 # This file is a shell script that caches the results of configure
 
4749
@@ -15010,6 +15009,10 @@ if test -z "${MAINTAINER_MODE_TRUE}" &&
 
4750
   as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined.
 
4751
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 
4752
 fi
 
4753
+
 
4754
+  ac_config_commands="$ac_config_commands po-locations/stamp-it"
 
4755
+
 
4756
+
 
4757
 if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
 
4758
   as_fn_error $? "conditional \"AMDEP\" was never defined.
 
4759
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 
4760
@@ -15026,10 +15029,6 @@ if test -z "${am__fastdepCC_TRUE}" && te
 
4761
   as_fn_error $? "conditional \"am__fastdepCC\" was never defined.
 
4762
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 
4763
 fi
 
4764
-if test -z "${USE_ONE_BIG_XML_TRUE}" && test -z "${USE_ONE_BIG_XML_FALSE}"; then
 
4765
-  as_fn_error $? "conditional \"USE_ONE_BIG_XML\" was never defined.
 
4766
-Usually this means the macro was only invoked conditionally." "$LINENO" 5
 
4767
-fi
 
4768
 if test -z "${GCONF_SCHEMAS_INSTALL_TRUE}" && test -z "${GCONF_SCHEMAS_INSTALL_FALSE}"; then
 
4769
   as_fn_error $? "conditional \"GCONF_SCHEMAS_INSTALL\" was never defined.
 
4770
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 
4771
@@ -15651,6 +15650,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_writ
 
4772
 #
 
4773
 # INIT-COMMANDS
 
4774
 #
 
4775
+
 
4776
 AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
 
4777
 
 
4778
 
 
4779
@@ -15918,22 +15918,24 @@ for ac_config_target in $ac_config_targe
 
4780
 do
 
4781
   case $ac_config_target in
 
4782
     "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
 
4783
+    "default-1") CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;;
 
4784
     "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
 
4785
     "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;;
 
4786
-    "default-1") CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;;
 
4787
+    "default-2") CONFIG_COMMANDS="$CONFIG_COMMANDS default-2" ;;
 
4788
     "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
 
4789
     "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;;
 
4790
     "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;;
 
4791
-    "po-locations/Makefile") CONFIG_FILES="$CONFIG_FILES po-locations/Makefile" ;;
 
4792
+    "po-locations/Makefile.in") CONFIG_FILES="$CONFIG_FILES po-locations/Makefile.in" ;;
 
4793
     "libgweather/Makefile") CONFIG_FILES="$CONFIG_FILES libgweather/Makefile" ;;
 
4794
     "libgweather/gweather.pc") CONFIG_FILES="$CONFIG_FILES libgweather/gweather.pc" ;;
 
4795
     "libgweather/gweather-uninstalled.pc") CONFIG_FILES="$CONFIG_FILES libgweather/gweather-uninstalled.pc" ;;
 
4796
     "data/Makefile") CONFIG_FILES="$CONFIG_FILES data/Makefile" ;;
 
4797
     "python/Makefile") CONFIG_FILES="$CONFIG_FILES python/Makefile" ;;
 
4798
     "icons/Makefile") CONFIG_FILES="$CONFIG_FILES icons/Makefile" ;;
 
4799
+    "po-locations/stamp-it") CONFIG_COMMANDS="$CONFIG_COMMANDS po-locations/stamp-it" ;;
 
4800
     "po/stamp-it") CONFIG_COMMANDS="$CONFIG_COMMANDS po/stamp-it" ;;
 
4801
 
 
4802
-  *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
 
4803
+  *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5 ;;
 
4804
   esac
 
4805
 done
 
4806
 
 
4807
@@ -16249,7 +16251,7 @@ do
 
4808
   esac
 
4809
   case $ac_mode$ac_tag in
 
4810
   :[FHL]*:*);;
 
4811
-  :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
 
4812
+  :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5 ;;
 
4813
   :[FH]-) ac_tag=-:-;;
 
4814
   :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
 
4815
   esac
 
4816
@@ -16277,7 +16279,7 @@ do
 
4817
           [\\/$]*) false;;
 
4818
           *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
 
4819
           esac ||
 
4820
-          as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
 
4821
+          as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5 ;;
 
4822
       esac
 
4823
       case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
 
4824
       as_fn_append ac_file_inputs " '$ac_f'"
 
4825
@@ -16304,7 +16306,7 @@ $as_echo "$as_me: creating $ac_file" >&6
 
4826
 
 
4827
     case $ac_tag in
 
4828
     *:-:* | *:-) cat >"$tmp/stdin" \
 
4829
-      || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
 
4830
+      || as_fn_error $? "could not create $ac_file" "$LINENO" 5  ;;
 
4831
     esac
 
4832
     ;;
 
4833
   esac
 
4834
@@ -16524,6 +16526,7 @@ $as_echo "$as_me: executing $ac_file com
 
4835
 
 
4836
 
 
4837
   case $ac_file$ac_mode in
 
4838
+    "default-1":C) sed -e "/POTFILES =/r po/POTFILES" po-locations/Makefile.in > po-locations/Makefile ;;
 
4839
     "depfiles":C) test x"$AMDEP_TRUE" != x"" || {
 
4840
   # Autoconf 2.62 quotes --file arguments for eval, but not when files
 
4841
   # are listed without --file.  Let's play safe and only enable the eval
 
4842
@@ -16636,6 +16639,7 @@ $as_echo X"$file" |
 
4843
 
 
4844
 # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
 
4845
 # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION
 
4846
+# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
 
4847
 # NOTE: Changes made to this file will be lost: look at ltmain.sh.
 
4848
 #
 
4849
 #   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
 
4850
@@ -17253,9 +17257,29 @@ _LT_EOF
 
4851
   chmod +x "$ofile"
 
4852
 
 
4853
  ;;
 
4854
-    "default-1":C) case "$CONFIG_FILES" in *po/Makefile.in*)
 
4855
+    "default-2":C) case "$CONFIG_FILES" in *po/Makefile.in*)
 
4856
         sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile
 
4857
       esac ;;
 
4858
+    "po-locations/stamp-it":C)
 
4859
+    if  ! grep "^# INTLTOOL_MAKEFILE$" "po-locations/Makefile.in" > /dev/null ; then
 
4860
+       as_fn_error $? "po-locations/Makefile.in.in was not created by intltoolize." "$LINENO" 5
 
4861
+    fi
 
4862
+    rm -f "po-locations/stamp-it" "po-locations/stamp-it.tmp" "po-locations/POTFILES" "po-locations/Makefile.tmp"
 
4863
+    >"po-locations/stamp-it.tmp"
 
4864
+    sed '/^#/d
 
4865
+        s/^[[].*] *//
 
4866
+        /^[    ]*$/d
 
4867
+       '"s|^|  $ac_top_srcdir/|" \
 
4868
+      "$srcdir/po-locations/POTFILES.in" | sed '$!s/$/ \\/' >"po-locations/POTFILES"
 
4869
+
 
4870
+    sed '/^POTFILES =/,/[^\\]$/ {
 
4871
+               /^POTFILES =/!d
 
4872
+               r po-locations/POTFILES
 
4873
+         }
 
4874
+        ' "po-locations/Makefile.in" >"po-locations/Makefile"
 
4875
+    rm -f "po-locations/Makefile.tmp"
 
4876
+    mv "po-locations/stamp-it.tmp" "po-locations/stamp-it"
 
4877
+   ;;
 
4878
     "po/stamp-it":C)
 
4879
     if  ! grep "^# INTLTOOL_MAKEFILE$" "po/Makefile.in" > /dev/null ; then
 
4880
        as_fn_error $? "po/Makefile.in.in was not created by intltoolize." "$LINENO" 5
 
4881
@@ -17315,12 +17339,6 @@ $as_echo "$as_me: WARNING: unrecognized
 
4882
 fi
 
4883
 
 
4884
 
 
4885
-if test "x$enable_big_xml" = "xyes"; then
 
4886
-       LOCATIONS_XML_TRANSLATIONS="one big file"
 
4887
-else
 
4888
-       LOCATIONS_XML_TRANSLATIONS="one file per translation"
 
4889
-fi
 
4890
-
 
4891
 echo "
 
4892
 libgweather-$VERSION configure summary:
 
4893
 
 
4894
@@ -17328,6 +17346,4 @@ libgweather-$VERSION configure summary:
 
4895
        Source code location:           ${srcdir}
 
4896
        Compiler:                       ${CC}
 
4897
        Python bindings:                ${enable_python}
 
4898
-       Locations.xml translations:     ${LOCATIONS_XML_TRANSLATIONS}
 
4899
-       Locations.xml compression:      ${enable_locations_compression}
 
4900
 " >&2
 
4901
--- libgweather-2.30.3.orig/data/Makefile.in
 
4902
+++ libgweather-2.30.3/data/Makefile.in
 
4903
@@ -269,14 +269,10 @@ libgweatherdtddir = $(pkgdatadir)
 
4904
 libgweatherdtd_DATA = locations.dtd
 
4905
 libgweatherlocationsdir = $(pkgdatadir)
 
4906
 libgweatherlocations_in_files = Locations.xml.in
 
4907
-@USE_ONE_BIG_XML_FALSE@LOCATIONS_STAMP = stamp-Locations.xml
 
4908
-@USE_ONE_BIG_XML_TRUE@LOCATIONS_STAMP = 
 
4909
-@USE_ONE_BIG_XML_FALSE@libgweatherlocations_DATA = $(shell echo $(PO_LOCATIONS) | sed "s|$(top_srcdir)/po-locations/|Locations.|g;s|\.po|.xml$(COMPRESS_EXT)|g") $(libgweatherlocations_data)$(COMPRESS_EXT)
 
4910
-@USE_ONE_BIG_XML_TRUE@libgweatherlocations_DATA = $(libgweatherlocations_in_files:.xml.in=.xml$(COMPRESS_EXT))
 
4911
-@USE_ONE_BIG_XML_FALSE@PO_LOCATIONS = $(shell if test -n "$(LINGUAS)"; then for lang in $(LINGUAS); do if test -f "$(top_srcdir)/po-locations/$$lang.po"; then echo "$(top_srcdir)/po-locations/$$lang.po "; fi; done; else for pofile in $(top_srcdir)/po-locations/*.po; do echo $$pofile; done; fi)
 
4912
+LOCATIONS_STAMP = stamp-Locations.xml
 
4913
 
 
4914
 # Helper variable
 
4915
-@USE_ONE_BIG_XML_FALSE@libgweatherlocations_data = $(libgweatherlocations_in_files:.xml.in=.xml)
 
4916
+libgweatherlocations_DATA = $(libgweatherlocations_in_files:.xml.in=.xml)
 
4917
 EXTRA_DIST = \
 
4918
        $(libgweatherlocations_in_files)        \
 
4919
        $(libgweatherdtd_DATA)                  \
 
4920
@@ -522,35 +518,17 @@ uninstall-am: uninstall-libgweatherdtdDA
 
4921
        uninstall-libgweatherlocationsDATA
 
4922
 
 
4923
 
 
4924
-@USE_ONE_BIG_XML_TRUE@%.xml$(COMPRESS_EXT): %.xml.in $(wildcard $(top_srcdir)/po-locations/*.po)
 
4925
-@USE_ONE_BIG_XML_TRUE@ $(AM_V_GEN)LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po-locations/.intltool-merge-cache $(top_srcdir)/po-locations $< `echo $@ | sed "s/.xml$(COMPRESS_EXT)/.xml/"` && \
 
4926
-@USE_ONE_BIG_XML_TRUE@ if test "x$(COMPRESS_EXT)" = "x.gz"; then                               \
 
4927
-@USE_ONE_BIG_XML_TRUE@         gzip --force `echo $@ | sed "s/.xml$(COMPRESS_EXT)/.xml/"`;     \
 
4928
-@USE_ONE_BIG_XML_TRUE@ fi
 
4929
-
 
4930
 # We need this step so that we merge all the make Locations.xy.xml destinations
 
4931
 # into one unique destination. This makes -j2 work. (Else, we end up with
 
4932
 # multiple and conflicting calls to intltool-merge)
 
4933
-@USE_ONE_BIG_XML_FALSE@$(libgweatherlocations_DATA): $(LOCATIONS_STAMP)
 
4934
+$(libgweatherlocations_DATA): $(LOCATIONS_STAMP)
 
4935
 
 
4936
-@USE_ONE_BIG_XML_FALSE@$(LOCATIONS_STAMP): $(libgweatherlocations_in_files) $(PO_LOCATIONS) Makefile
 
4937
-@USE_ONE_BIG_XML_FALSE@        $(AM_V_at)LC_ALL=C $(INTLTOOL_MERGE) --multiple-output --xml-style --utf8 --cache=$(top_builddir)/po-locations/.intltool-merge-cache $(top_srcdir)/po-locations $< $(libgweatherlocations_data) && \
 
4938
-@USE_ONE_BIG_XML_FALSE@        for pofile in $(PO_LOCATIONS); do \
 
4939
-@USE_ONE_BIG_XML_FALSE@                locale=`echo $$pofile | sed "s;$(top_srcdir)/po-locations/\(.*\)\.po;\1;"`;     \
 
4940
-@USE_ONE_BIG_XML_FALSE@                xmllint --noblanks -o Locations.$$locale.xml $$locale/$(libgweatherlocations_data); \
 
4941
-@USE_ONE_BIG_XML_FALSE@                rm -f $$locale/$(libgweatherlocations_data);            \
 
4942
-@USE_ONE_BIG_XML_FALSE@                test -d $$locale && rmdir $$locale;                     \
 
4943
-@USE_ONE_BIG_XML_FALSE@                if test "x$(COMPRESS_EXT)" = "x.gz"; then               \
 
4944
-@USE_ONE_BIG_XML_FALSE@                        gzip --force Locations.$$locale.xml;            \
 
4945
-@USE_ONE_BIG_XML_FALSE@                fi;                                                     \
 
4946
-@USE_ONE_BIG_XML_FALSE@        done &&                                                         \
 
4947
-@USE_ONE_BIG_XML_FALSE@        xmllint --noblanks -o Locations.xml C/$(libgweatherlocations_data) && \
 
4948
-@USE_ONE_BIG_XML_FALSE@        rm -f C/$(libgweatherlocations_data) &&                         \
 
4949
-@USE_ONE_BIG_XML_FALSE@        test -d C && rmdir C &&                                         \
 
4950
-@USE_ONE_BIG_XML_FALSE@        if test "x$(COMPRESS_EXT)" = "x.gz"; then                       \
 
4951
-@USE_ONE_BIG_XML_FALSE@                gzip --force Locations.xml;                             \
 
4952
-@USE_ONE_BIG_XML_FALSE@        fi &&                                                           \
 
4953
-@USE_ONE_BIG_XML_FALSE@        touch $@
 
4954
+$(LOCATIONS_STAMP): $(libgweatherlocations_in_files) Makefile
 
4955
+       LC_ALL=C $(INTLTOOL_MERGE) --multiple-output --xml-style --utf8 --cache=$(top_builddir)/po-locations/.intltool-merge-cache /dev/null $< $(libgweatherlocations_DATA)  && \
 
4956
+       xmllint --noblanks -o Locations.xml C/$(libgweatherlocations_DATA) && \
 
4957
+       rm -f C/$(libgweatherlocations_DATA) &&                         \
 
4958
+       test -d C && rmdir C &&                                         \
 
4959
+       touch $@
 
4960
 
 
4961
 check:
 
4962
        xmllint --valid --noout $(top_srcdir)/data/Locations.xml.in
 
4963
--- libgweather-2.30.3.orig/m4/libtool.m4
 
4964
+++ libgweather-2.30.3/m4/libtool.m4
 
4965
@@ -684,6 +684,7 @@ _LT_CONFIG_SAVE_COMMANDS([
 
4966
 
 
4967
 # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
 
4968
 # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION
 
4969
+# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
 
4970
 # NOTE: Changes made to this file will be lost: look at ltmain.sh.
 
4971
 #
 
4972
 _LT_COPYING
 
4973
@@ -2444,7 +2445,7 @@ linux*oldld* | linux*aout* | linux*coff*
 
4974
   ;;
 
4975
 
 
4976
 # This must be Linux ELF.
 
4977
-linux* | k*bsd*-gnu)
 
4978
+linux* | k*bsd*-gnu | kopensolaris*-gnu)
 
4979
   version_type=linux
 
4980
   need_lib_prefix=no
 
4981
   need_version=no
 
4982
@@ -2484,6 +2485,18 @@ linux* | k*bsd*-gnu)
 
4983
   dynamic_linker='GNU/Linux ld.so'
 
4984
   ;;
 
4985
 
 
4986
+netbsdelf*-gnu)
 
4987
+  version_type=linux
 
4988
+  need_lib_prefix=no
 
4989
+  need_version=no
 
4990
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
 
4991
+  soname_spec='${libname}${release}${shared_ext}$major'
 
4992
+  shlibpath_var=LD_LIBRARY_PATH
 
4993
+  shlibpath_overrides_runpath=no
 
4994
+  hardcode_into_libs=yes
 
4995
+  dynamic_linker='NetBSD ld.elf_so'
 
4996
+  ;;
 
4997
+
 
4998
 netbsd*)
 
4999
   version_type=sunos
 
5000
   need_lib_prefix=no
 
5001
@@ -3071,11 +3084,11 @@ irix5* | irix6* | nonstopux*)
 
5002
   ;;
 
5003
 
 
5004
 # This must be Linux ELF.
 
5005
-linux* | k*bsd*-gnu)
 
5006
+linux* | k*bsd*-gnu | kopensolaris*-gnu)
 
5007
   lt_cv_deplibs_check_method=pass_all
 
5008
   ;;
 
5009
 
 
5010
-netbsd*)
 
5011
+netbsd* | netbsdelf*-gnu)
 
5012
   if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
 
5013
     lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
 
5014
   else
 
5015
@@ -3692,7 +3705,7 @@ m4_if([$1], [CXX], [
 
5016
            ;;
 
5017
        esac
 
5018
        ;;
 
5019
-      linux* | k*bsd*-gnu)
 
5020
+      linux* | k*bsd*-gnu | kopensolaris*-gnu)
 
5021
        case $cc_basename in
 
5022
          KCC*)
 
5023
            # KAI C++ Compiler
 
5024
@@ -3756,7 +3769,7 @@ m4_if([$1], [CXX], [
 
5025
            ;;
 
5026
        esac
 
5027
        ;;
 
5028
-      netbsd*)
 
5029
+      netbsd* | netbsdelf*-gnu)
 
5030
        ;;
 
5031
       *qnx* | *nto*)
 
5032
         # QNX uses GNU C++, but need to define -shared option too, otherwise
 
5033
@@ -3976,7 +3989,7 @@ m4_if([$1], [CXX], [
 
5034
       _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
 
5035
       ;;
 
5036
 
 
5037
-    linux* | k*bsd*-gnu)
 
5038
+    linux* | k*bsd*-gnu | kopensolaris*-gnu)
 
5039
       case $cc_basename in
 
5040
       # old Intel for x86_64 which still supported -KPIC.
 
5041
       ecc*)
 
5042
@@ -4181,6 +4194,9 @@ m4_if([$1], [CXX], [
 
5043
   cygwin* | mingw* | cegcc*)
 
5044
     _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;/^.*[[ ]]__nm__/s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols'
 
5045
   ;;
 
5046
+  linux* | k*bsd*-gnu)
 
5047
+    _LT_TAGVAR(link_all_deplibs, $1)=no
 
5048
+  ;;
 
5049
   *)
 
5050
     _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
 
5051
   ;;
 
5052
@@ -4245,6 +4261,9 @@ dnl Note also adjust exclude_expsyms for
 
5053
   openbsd*)
 
5054
     with_gnu_ld=no
 
5055
     ;;
 
5056
+  linux* | k*bsd*-gnu)
 
5057
+    _LT_TAGVAR(link_all_deplibs, $1)=no
 
5058
+    ;;
 
5059
   esac
 
5060
 
 
5061
   _LT_TAGVAR(ld_shlibs, $1)=yes
 
5062
@@ -4266,6 +4285,7 @@ dnl Note also adjust exclude_expsyms for
 
5063
     fi
 
5064
     supports_anon_versioning=no
 
5065
     case `$LD -v 2>&1` in
 
5066
+      *GNU\ gold*) supports_anon_versioning=yes ;;
 
5067
       *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11
 
5068
       *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ...
 
5069
       *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ...
 
5070
@@ -4357,7 +4377,7 @@ _LT_EOF
 
5071
       _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
 
5072
       ;;
 
5073
 
 
5074
-    gnu* | linux* | tpf* | k*bsd*-gnu)
 
5075
+    gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu)
 
5076
       tmp_diet=no
 
5077
       if test "$host_os" = linux-dietlibc; then
 
5078
        case $cc_basename in
 
5079
@@ -4427,7 +4447,7 @@ _LT_EOF
 
5080
       fi
 
5081
       ;;
 
5082
 
 
5083
-    netbsd*)
 
5084
+    netbsd* | netbsdelf*-gnu)
 
5085
       if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
 
5086
        _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
 
5087
        wlarc=
 
5088
@@ -4602,6 +4622,7 @@ _LT_EOF
 
5089
        if test "$aix_use_runtimelinking" = yes; then
 
5090
          shared_flag="$shared_flag "'${wl}-G'
 
5091
        fi
 
5092
+       _LT_TAGVAR(link_all_deplibs, $1)=no
 
5093
       else
 
5094
        # not using gcc
 
5095
        if test "$host_cpu" = ia64; then
 
5096
@@ -4840,7 +4861,7 @@ _LT_EOF
 
5097
       _LT_TAGVAR(link_all_deplibs, $1)=yes
 
5098
       ;;
 
5099
 
 
5100
-    netbsd*)
 
5101
+    netbsd* | netbsdelf*-gnu)
 
5102
       if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
 
5103
        _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out
 
5104
       else
 
5105
@@ -5840,7 +5861,7 @@ if test "$_lt_caught_CXX_error" != yes;
 
5106
         _LT_TAGVAR(inherit_rpath, $1)=yes
 
5107
         ;;
 
5108
 
 
5109
-      linux* | k*bsd*-gnu)
 
5110
+      linux* | k*bsd*-gnu | kopensolaris*-gnu)
 
5111
         case $cc_basename in
 
5112
           KCC*)
 
5113
            # Kuck and Associates, Inc. (KAI) C++ Compiler
 
5114
--- /dev/null
 
5115
+++ libgweather-2.30.3/po-locations/libgweather-locations.pot
 
5116
@@ -0,0 +1,23572 @@
 
5117
+# SOME DESCRIPTIVE TITLE.
 
5118
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 
5119
+# This file is distributed under the same license as the PACKAGE package.
 
5120
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 
5121
+#
 
5122
+#, fuzzy
 
5123
+msgid ""
 
5124
+msgstr ""
 
5125
+"Project-Id-Version: PACKAGE VERSION\n"
 
5126
+"Report-Msgid-Bugs-To: \n"
 
5127
+"POT-Creation-Date: 2010-10-09 14:21+0000\n"
 
5128
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 
5129
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 
5130
+"Language-Team: LANGUAGE <LL@li.org>\n"
 
5131
+"Language: \n"
 
5132
+"MIME-Version: 1.0\n"
 
5133
+"Content-Type: text/plain; charset=UTF-8\n"
 
5134
+"Content-Transfer-Encoding: 8bit\n"
 
5135
+
 
5136
+#. A city in Yemen
 
5137
+#: ../data/Locations.xml.in.h:2
 
5138
+msgid "'Adan"
 
5139
+msgstr ""
 
5140
+
 
5141
+#. A city in Saudi Arabia
 
5142
+#: ../data/Locations.xml.in.h:4
 
5143
+msgid "'Ar'ar"
 
5144
+msgstr ""
 
5145
+
 
5146
+#. A city in Yemen
 
5147
+#: ../data/Locations.xml.in.h:6
 
5148
+msgid "'Ataq"
 
5149
+msgstr ""
 
5150
+
 
5151
+#. A city in Spain
 
5152
+#: ../data/Locations.xml.in.h:8
 
5153
+msgid "A Coruña"
 
5154
+msgstr ""
 
5155
+
 
5156
+#. A city in Iran.
 
5157
+#. The name is also written "آبادان".
 
5158
+#.
 
5159
+#: ../data/Locations.xml.in.h:12
 
5160
+msgid "Abadan"
 
5161
+msgstr ""
 
5162
+
 
5163
+#. A city in Iran
 
5164
+#: ../data/Locations.xml.in.h:14
 
5165
+msgid "Abadeh"
 
5166
+msgstr ""
 
5167
+
 
5168
+#. A city in Russia.
 
5169
+#. The local name in Russian is "Абакан".
 
5170
+#.
 
5171
+#: ../data/Locations.xml.in.h:18
 
5172
+msgid "Abakan"
 
5173
+msgstr ""
 
5174
+
 
5175
+#. A city in France
 
5176
+#: ../data/Locations.xml.in.h:20
 
5177
+msgid "Abbeville"
 
5178
+msgstr ""
 
5179
+
 
5180
+#. A city in British Columbia in Canada
 
5181
+#: ../data/Locations.xml.in.h:22
 
5182
+msgid "Abbotsford"
 
5183
+msgstr ""
 
5184
+
 
5185
+#. A city in Saudi Arabia
 
5186
+#: ../data/Locations.xml.in.h:24
 
5187
+msgid "Abha"
 
5188
+msgstr ""
 
5189
+
 
5190
+#. A city in Côte d'Ivoire
 
5191
+#: ../data/Locations.xml.in.h:26
 
5192
+msgid "Abidjan"
 
5193
+msgstr ""
 
5194
+
 
5195
+#. A city in Texas in the United States
 
5196
+#: ../data/Locations.xml.in.h:28
 
5197
+msgid "Abilene"
 
5198
+msgstr ""
 
5199
+
 
5200
+#. A city in Virginia in the United States
 
5201
+#: ../data/Locations.xml.in.h:30
 
5202
+msgid "Abingdon"
 
5203
+msgstr ""
 
5204
+
 
5205
+#. The capital of the United Arab Emirates.
 
5206
+#. "Abu Dhabi" is the traditional English name.
 
5207
+#. The local name in Arabic is "Abu Zaby".
 
5208
+#.
 
5209
+#: ../data/Locations.xml.in.h:35
 
5210
+msgid "Abu Dhabi"
 
5211
+msgstr ""
 
5212
+
 
5213
+#. A city in Iran
 
5214
+#: ../data/Locations.xml.in.h:37
 
5215
+msgid "Abū Mūsā"
 
5216
+msgstr ""
 
5217
+
 
5218
+#. A city in Guerrero in Mexico
 
5219
+#: ../data/Locations.xml.in.h:39
 
5220
+msgid "Acapulco"
 
5221
+msgstr ""
 
5222
+
 
5223
+#. A city in Venezuela
 
5224
+#: ../data/Locations.xml.in.h:41
 
5225
+msgid "Acarigua"
 
5226
+msgstr ""
 
5227
+
 
5228
+#. The capital of Ghana
 
5229
+#: ../data/Locations.xml.in.h:43
 
5230
+msgid "Accra"
 
5231
+msgstr ""
 
5232
+
 
5233
+#. A city in Lower Saxony in Germany
 
5234
+#: ../data/Locations.xml.in.h:45
 
5235
+msgid "Achum"
 
5236
+msgstr ""
 
5237
+
 
5238
+#. A city in France
 
5239
+#: ../data/Locations.xml.in.h:47
 
5240
+msgid "Acon"
 
5241
+msgstr ""
 
5242
+
 
5243
+#. A city in Saudi Arabia
 
5244
+#: ../data/Locations.xml.in.h:49
 
5245
+msgid "Ad Dalfa'ah"
 
5246
+msgstr ""
 
5247
+
 
5248
+#. A city in Saudi Arabia
 
5249
+#: ../data/Locations.xml.in.h:51
 
5250
+msgid "Ad Dammam"
 
5251
+msgstr ""
 
5252
+
 
5253
+#. A city in Oklahoma in the United States
 
5254
+#: ../data/Locations.xml.in.h:53
 
5255
+msgid "Ada"
 
5256
+msgstr ""
 
5257
+
 
5258
+#. A city in Alaska in the United States
 
5259
+#: ../data/Locations.xml.in.h:55
 
5260
+msgid "Adak"
 
5261
+msgstr ""
 
5262
+
 
5263
+#. A city in North Carolina in the United States
 
5264
+#: ../data/Locations.xml.in.h:57
 
5265
+msgid "Adamsville"
 
5266
+msgstr ""
 
5267
+
 
5268
+#. A city in Turkey
 
5269
+#: ../data/Locations.xml.in.h:59
 
5270
+msgid "Adana"
 
5271
+msgstr ""
 
5272
+
 
5273
+#. A city in South Australia in Australia
 
5274
+#: ../data/Locations.xml.in.h:61
 
5275
+msgid "Adelaide"
 
5276
+msgstr ""
 
5277
+
 
5278
+#. A city in Russia.
 
5279
+#. The local name in Russian is "Адлер".
 
5280
+#.
 
5281
+#: ../data/Locations.xml.in.h:65
 
5282
+msgid "Adler"
 
5283
+msgstr ""
 
5284
+
 
5285
+#. A city in Algeria
 
5286
+#: ../data/Locations.xml.in.h:67
 
5287
+msgid "Adrar"
 
5288
+msgstr ""
 
5289
+
 
5290
+#. A city in Michigan in the United States
 
5291
+#: ../data/Locations.xml.in.h:69
 
5292
+msgid "Adrian"
 
5293
+msgstr ""
 
5294
+
 
5295
+#. AF - Afghanistan
 
5296
+#: ../data/Locations.xml.in.h:71
 
5297
+msgid "Afghanistan"
 
5298
+msgstr ""
 
5299
+
 
5300
+#: ../data/Locations.xml.in.h:72
 
5301
+msgid "Africa"
 
5302
+msgstr ""
 
5303
+
 
5304
+#. A city in Niger
 
5305
+#: ../data/Locations.xml.in.h:74
 
5306
+msgid "Agadez"
 
5307
+msgstr ""
 
5308
+
 
5309
+#. A city in Morocco
 
5310
+#: ../data/Locations.xml.in.h:76
 
5311
+msgid "Agadir"
 
5312
+msgstr ""
 
5313
+
 
5314
+#. A city in India
 
5315
+#. the local name in Bengali is "আগরতলা/Agortôla"
 
5316
+#: ../data/Locations.xml.in.h:79
 
5317
+msgid "Agartala"
 
5318
+msgstr ""
 
5319
+
 
5320
+#. A city in British Columbia in Canada
 
5321
+#: ../data/Locations.xml.in.h:81
 
5322
+msgid "Agassiz"
 
5323
+msgstr ""
 
5324
+
 
5325
+#. A city in France
 
5326
+#: ../data/Locations.xml.in.h:83
 
5327
+msgid "Agen"
 
5328
+msgstr ""
 
5329
+
 
5330
+#. A city in Iran.
 
5331
+#. The name is also written "آغاجاری".
 
5332
+#.
 
5333
+#: ../data/Locations.xml.in.h:87
 
5334
+msgid "Aghajari"
 
5335
+msgstr ""
 
5336
+
 
5337
+#. A city in Spain
 
5338
+#: ../data/Locations.xml.in.h:89
 
5339
+msgid "Agoncillo"
 
5340
+msgstr ""
 
5341
+
 
5342
+#. A city in India
 
5343
+#. the local name in Hindi is "आगरा"
 
5344
+#.
 
5345
+#: ../data/Locations.xml.in.h:93
 
5346
+msgid "Agra"
 
5347
+msgstr ""
 
5348
+
 
5349
+#. A city in India
 
5350
+#: ../data/Locations.xml.in.h:95
 
5351
+msgid "Ahmadabad"
 
5352
+msgstr ""
 
5353
+
 
5354
+#. A city in North Carolina in the United States
 
5355
+#: ../data/Locations.xml.in.h:97
 
5356
+msgid "Ahoskie"
 
5357
+msgstr ""
 
5358
+
 
5359
+#. A city in Iran.
 
5360
+#. The name is also written "اهواز".
 
5361
+#.
 
5362
+#: ../data/Locations.xml.in.h:101
 
5363
+msgid "Ahvaz"
 
5364
+msgstr ""
 
5365
+
 
5366
+#. A city in Austria.
 
5367
+#. One of several cities in Austria called "Aigen".
 
5368
+#.
 
5369
+#: ../data/Locations.xml.in.h:105
 
5370
+msgid "Aigen im Ennstal"
 
5371
+msgstr ""
 
5372
+
 
5373
+#. A city in Nebraska in the United States
 
5374
+#: ../data/Locations.xml.in.h:107
 
5375
+msgid "Ainsworth"
 
5376
+msgstr ""
 
5377
+
 
5378
+#. A city in Minnesota in the United States
 
5379
+#: ../data/Locations.xml.in.h:109
 
5380
+msgid "Aitkin"
 
5381
+msgstr ""
 
5382
+
 
5383
+#. A city in France
 
5384
+#: ../data/Locations.xml.in.h:111
 
5385
+msgid "Ajaccio"
 
5386
+msgstr ""
 
5387
+
 
5388
+#. A city in Japan
 
5389
+#: ../data/Locations.xml.in.h:113
 
5390
+msgid "Akita"
 
5391
+msgstr ""
 
5392
+
 
5393
+#. A city in Northwest Territories in Canada
 
5394
+#: ../data/Locations.xml.in.h:115
 
5395
+msgid "Aklavik"
 
5396
+msgstr ""
 
5397
+
 
5398
+#. A city in Cyprus
 
5399
+#: ../data/Locations.xml.in.h:117
 
5400
+msgid "Akrotiri"
 
5401
+msgstr ""
 
5402
+
 
5403
+#. A city in Iceland
 
5404
+#: ../data/Locations.xml.in.h:119
 
5405
+msgid "Akureyri"
 
5406
+msgstr ""
 
5407
+
 
5408
+#. A city in Jordan
 
5409
+#: ../data/Locations.xml.in.h:121
 
5410
+msgid "Al 'Aqabah"
 
5411
+msgstr ""
 
5412
+
 
5413
+#. A city in Saudi Arabia
 
5414
+#: ../data/Locations.xml.in.h:123
 
5415
+msgid "Al 'Aqiq"
 
5416
+msgstr ""
 
5417
+
 
5418
+#. A city in Egypt
 
5419
+#: ../data/Locations.xml.in.h:125
 
5420
+msgid "Al 'Arish"
 
5421
+msgstr ""
 
5422
+
 
5423
+#. A city in the United Arab Emirates
 
5424
+#: ../data/Locations.xml.in.h:127
 
5425
+msgid "Al 'Ayn"
 
5426
+msgstr ""
 
5427
+
 
5428
+#. A city in the United Arab Emirates
 
5429
+#: ../data/Locations.xml.in.h:129
 
5430
+msgid "Al Fujayrah"
 
5431
+msgstr ""
 
5432
+
 
5433
+#. A city in Egypt
 
5434
+#: ../data/Locations.xml.in.h:131
 
5435
+msgid "Al Ghardaqah"
 
5436
+msgstr ""
 
5437
+
 
5438
+#. A city in Bahrain.
 
5439
+#. The name is also written "الحد".
 
5440
+#.
 
5441
+#: ../data/Locations.xml.in.h:135
 
5442
+msgid "Al Hadd"
 
5443
+msgstr ""
 
5444
+
 
5445
+#. A city in Morocco
 
5446
+#: ../data/Locations.xml.in.h:137
 
5447
+msgid "Al Hoceima"
 
5448
+msgstr ""
 
5449
+
 
5450
+#. A city in Yemen
 
5451
+#: ../data/Locations.xml.in.h:139
 
5452
+msgid "Al Hudaydah"
 
5453
+msgstr ""
 
5454
+
 
5455
+#. A city in Jordan
 
5456
+#: ../data/Locations.xml.in.h:141
 
5457
+msgid "Al Jizah"
 
5458
+msgstr ""
 
5459
+
 
5460
+#. A city in Egypt
 
5461
+#: ../data/Locations.xml.in.h:143
 
5462
+msgid "Al Qabuti"
 
5463
+msgstr ""
 
5464
+
 
5465
+#. A city in Syria
 
5466
+#: ../data/Locations.xml.in.h:145
 
5467
+msgid "Al Qamishli"
 
5468
+msgstr ""
 
5469
+
 
5470
+#. A city in Saudi Arabia
 
5471
+#: ../data/Locations.xml.in.h:147
 
5472
+msgid "Al Qaysumah"
 
5473
+msgstr ""
 
5474
+
 
5475
+#. A city in Saudi Arabia
 
5476
+#: ../data/Locations.xml.in.h:149
 
5477
+msgid "Al Qurayyat"
 
5478
+msgstr ""
 
5479
+
 
5480
+#. A city in Saudi Arabia
 
5481
+#: ../data/Locations.xml.in.h:151
 
5482
+msgid "Al Wajh"
 
5483
+msgstr ""
 
5484
+
 
5485
+#. A city in Saudi Arabia
 
5486
+#: ../data/Locations.xml.in.h:153
 
5487
+msgid "Al Wuday'ah"
 
5488
+msgstr ""
 
5489
+
 
5490
+#. A state/province/territory in United States
 
5491
+#: ../data/Locations.xml.in.h:155
 
5492
+msgid "Alabama"
 
5493
+msgstr ""
 
5494
+
 
5495
+#. A city in Alabama in the United States
 
5496
+#: ../data/Locations.xml.in.h:157
 
5497
+msgid "Alabaster"
 
5498
+msgstr ""
 
5499
+
 
5500
+#. A state/province/territory in Brazil
 
5501
+#: ../data/Locations.xml.in.h:159
 
5502
+msgid "Alagoas"
 
5503
+msgstr ""
 
5504
+
 
5505
+#. This represents the time zone in the Brazilian states of
 
5506
+#. Alagoas and Sergipe. See the comment on "Brasília Time"
 
5507
+#. for more details. This string is only used in places
 
5508
+#. where "Brazil" is already clear from context.
 
5509
+#.
 
5510
+#: ../data/Locations.xml.in.h:165
 
5511
+msgid "Alagoas, Sergipe"
 
5512
+msgstr ""
 
5513
+
 
5514
+#. A city in Costa Rica
 
5515
+#: ../data/Locations.xml.in.h:167
 
5516
+msgid "Alajuela"
 
5517
+msgstr ""
 
5518
+
 
5519
+#. A city in New Mexico in the United States
 
5520
+#: ../data/Locations.xml.in.h:169
 
5521
+msgid "Alamogordo"
 
5522
+msgstr ""
 
5523
+
 
5524
+#. A city in Colorado in the United States
 
5525
+#: ../data/Locations.xml.in.h:171
 
5526
+msgid "Alamosa"
 
5527
+msgstr ""
 
5528
+
 
5529
+#. A state/province/territory in United States
 
5530
+#: ../data/Locations.xml.in.h:173
 
5531
+msgid "Alaska"
 
5532
+msgstr ""
 
5533
+
 
5534
+#. The time zone used in the majority of Alaska in the
 
5535
+#. United States. The string is only used in places where
 
5536
+#. "United States" is already clear from context.
 
5537
+#.
 
5538
+#: ../data/Locations.xml.in.h:178
 
5539
+msgid "Alaska Time"
 
5540
+msgstr ""
 
5541
+
 
5542
+#. AL - Albania
 
5543
+#: ../data/Locations.xml.in.h:180
 
5544
+msgid "Albania"
 
5545
+msgstr ""
 
5546
+
 
5547
+#. A city in North Carolina in the United States
 
5548
+#: ../data/Locations.xml.in.h:182
 
5549
+msgid "Albemarle"
 
5550
+msgstr ""
 
5551
+
 
5552
+#. A city in Italy
 
5553
+#: ../data/Locations.xml.in.h:184
 
5554
+msgid "Albenga"
 
5555
+msgstr ""
 
5556
+
 
5557
+#. A city in Minnesota in the United States
 
5558
+#: ../data/Locations.xml.in.h:186
 
5559
+msgid "Albert Lea"
 
5560
+msgstr ""
 
5561
+
 
5562
+#. A state/province/territory in Canada
 
5563
+#: ../data/Locations.xml.in.h:188
 
5564
+msgid "Alberta"
 
5565
+msgstr ""
 
5566
+
 
5567
+#. A city in Alabama in the United States
 
5568
+#: ../data/Locations.xml.in.h:190
 
5569
+msgid "Albertville"
 
5570
+msgstr ""
 
5571
+
 
5572
+#. A city in Nebraska in the United States
 
5573
+#: ../data/Locations.xml.in.h:192
 
5574
+msgid "Albion"
 
5575
+msgstr ""
 
5576
+
 
5577
+#. A city in New Mexico in the United States
 
5578
+#: ../data/Locations.xml.in.h:194
 
5579
+msgid "Albuquerque"
 
5580
+msgstr ""
 
5581
+
 
5582
+#. A city in Spain
 
5583
+#: ../data/Locations.xml.in.h:196
 
5584
+msgid "Alcantarilla"
 
5585
+msgstr ""
 
5586
+
 
5587
+#. A city in France
 
5588
+#: ../data/Locations.xml.in.h:198
 
5589
+msgid "Alençon"
 
5590
+msgstr ""
 
5591
+
 
5592
+#. A city in Syria.
 
5593
+#. "Aleppo" is the traditional English name.
 
5594
+#. The local name in Arabic is "Halab".
 
5595
+#.
 
5596
+#: ../data/Locations.xml.in.h:203
 
5597
+msgid "Aleppo"
 
5598
+msgstr ""
 
5599
+
 
5600
+#. A city in Alabama in the United States
 
5601
+#: ../data/Locations.xml.in.h:205
 
5602
+msgid "Alexander City"
 
5603
+msgstr ""
 
5604
+
 
5605
+#. A city in Greece
 
5606
+#: ../data/Locations.xml.in.h:207
 
5607
+msgid "Alexandroúpolis"
 
5608
+msgstr ""
 
5609
+
 
5610
+#. DZ - Algeria
 
5611
+#: ../data/Locations.xml.in.h:209
 
5612
+msgid "Algeria"
 
5613
+msgstr ""
 
5614
+
 
5615
+#. A city in Italy
 
5616
+#: ../data/Locations.xml.in.h:211
 
5617
+msgid "Alghero"
 
5618
+msgstr ""
 
5619
+
 
5620
+#. The capital of Algeria.
 
5621
+#. "Algiers" is the traditional English name.
 
5622
+#. The local name in French is "Alger".
 
5623
+#.
 
5624
+#: ../data/Locations.xml.in.h:216
 
5625
+msgid "Algiers"
 
5626
+msgstr ""
 
5627
+
 
5628
+#. A city in Spain
 
5629
+#: ../data/Locations.xml.in.h:218
 
5630
+msgid "Alicante"
 
5631
+msgstr ""
 
5632
+
 
5633
+#. A city in Texas in the United States
 
5634
+#: ../data/Locations.xml.in.h:220
 
5635
+msgid "Alice"
 
5636
+msgstr ""
 
5637
+
 
5638
+#. A city in Northern Territory in Australia
 
5639
+#: ../data/Locations.xml.in.h:222
 
5640
+msgid "Alice Springs"
 
5641
+msgstr ""
 
5642
+
 
5643
+#. A city in India
 
5644
+#. the local name in Hindi is "इलाहाबाद"
 
5645
+#: ../data/Locations.xml.in.h:225
 
5646
+msgid "Allahabad"
 
5647
+msgstr ""
 
5648
+
 
5649
+#. A city in Pennsylvania in the United States
 
5650
+#: ../data/Locations.xml.in.h:227
 
5651
+msgid "Allentown"
 
5652
+msgstr ""
 
5653
+
 
5654
+#. A city in Nebraska in the United States
 
5655
+#: ../data/Locations.xml.in.h:229
 
5656
+msgid "Alliance"
 
5657
+msgstr ""
 
5658
+
 
5659
+#. A city in British Columbia in Canada
 
5660
+#: ../data/Locations.xml.in.h:231
 
5661
+msgid "Allison Harbour"
 
5662
+msgstr ""
 
5663
+
 
5664
+#. A city in Kazakhstan
 
5665
+#: ../data/Locations.xml.in.h:233
 
5666
+msgid "Almaty"
 
5667
+msgstr ""
 
5668
+
 
5669
+#. A city in Spain
 
5670
+#: ../data/Locations.xml.in.h:235
 
5671
+msgid "Almería"
 
5672
+msgstr ""
 
5673
+
 
5674
+#. The capital of Niue
 
5675
+#: ../data/Locations.xml.in.h:237
 
5676
+msgid "Alofi"
 
5677
+msgstr ""
 
5678
+
 
5679
+#. A city in Michigan in the United States
 
5680
+#: ../data/Locations.xml.in.h:239
 
5681
+msgid "Alpena"
 
5682
+msgstr ""
 
5683
+
 
5684
+#. A city in Norway
 
5685
+#: ../data/Locations.xml.in.h:241
 
5686
+msgid "Alta"
 
5687
+msgstr ""
 
5688
+
 
5689
+#. A city in Mato Grosso in Brazil
 
5690
+#: ../data/Locations.xml.in.h:243
 
5691
+msgid "Alta Floresta"
 
5692
+msgstr ""
 
5693
+
 
5694
+#. A city in British Columbia in Canada
 
5695
+#: ../data/Locations.xml.in.h:245
 
5696
+msgid "Alta Lake"
 
5697
+msgstr ""
 
5698
+
 
5699
+#. A city in Pará in Brazil
 
5700
+#: ../data/Locations.xml.in.h:247
 
5701
+msgid "Altamira"
 
5702
+msgstr ""
 
5703
+
 
5704
+#. A city in Thuringia in Germany
 
5705
+#: ../data/Locations.xml.in.h:249
 
5706
+msgid "Altenburg"
 
5707
+msgstr ""
 
5708
+
 
5709
+#. A city in Illinois in the United States
 
5710
+#: ../data/Locations.xml.in.h:251
 
5711
+msgid "Alton"
 
5712
+msgstr ""
 
5713
+
 
5714
+#. A city in Pennsylvania in the United States
 
5715
+#: ../data/Locations.xml.in.h:253
 
5716
+msgid "Altoona"
 
5717
+msgstr ""
 
5718
+
 
5719
+#. A city in California in the United States
 
5720
+#: ../data/Locations.xml.in.h:255
 
5721
+msgid "Alturas"
 
5722
+msgstr ""
 
5723
+
 
5724
+#. A city in Oklahoma in the United States
 
5725
+#: ../data/Locations.xml.in.h:257
 
5726
+msgid "Altus"
 
5727
+msgstr ""
 
5728
+
 
5729
+#. A city in Oklahoma in the United States
 
5730
+#: ../data/Locations.xml.in.h:259
 
5731
+msgid "Alva"
 
5732
+msgstr ""
 
5733
+
 
5734
+#. A city in Honduras
 
5735
+#: ../data/Locations.xml.in.h:261
 
5736
+msgid "Amapala"
 
5737
+msgstr ""
 
5738
+
 
5739
+#. A state/province/territory in Brazil
 
5740
+#: ../data/Locations.xml.in.h:263
 
5741
+msgid "Amapá"
 
5742
+msgstr ""
 
5743
+
 
5744
+#. This represents the time zone in the Brazilian state of
 
5745
+#. Amapá and the eastern part of Pará. See the comment on
 
5746
+#. "Brasília Time" for more details. This string is only
 
5747
+#. used in places where "Brazil" is already clear from
 
5748
+#. context.
 
5749
+#.
 
5750
+#: ../data/Locations.xml.in.h:270
 
5751
+msgid "Amapá / East Pará"
 
5752
+msgstr ""
 
5753
+
 
5754
+#. A city in Texas in the United States
 
5755
+#: ../data/Locations.xml.in.h:272
 
5756
+msgid "Amarillo"
 
5757
+msgstr ""
 
5758
+
 
5759
+#. A state/province/territory in Brazil
 
5760
+#: ../data/Locations.xml.in.h:274
 
5761
+msgid "Amazonas"
 
5762
+msgstr ""
 
5763
+
 
5764
+#. A city in Alaska in the United States
 
5765
+#: ../data/Locations.xml.in.h:276
 
5766
+msgid "Ambler"
 
5767
+msgstr ""
 
5768
+
 
5769
+#. A city in France.
 
5770
+#. One of several cities in France called "Ambérieu".
 
5771
+#.
 
5772
+#: ../data/Locations.xml.in.h:280
 
5773
+msgid "Ambérieu-en-Bugey"
 
5774
+msgstr ""
 
5775
+
 
5776
+#. A city in Louisiana in the United States
 
5777
+#: ../data/Locations.xml.in.h:282
 
5778
+msgid "Amelia"
 
5779
+msgstr ""
 
5780
+
 
5781
+#. AS - American Samoa, a territory of the United States in the
 
5782
+#. South Pacific, not to be confused with the separate nation
 
5783
+#. of "Samoa".
 
5784
+#.
 
5785
+#: ../data/Locations.xml.in.h:287
 
5786
+msgid "American Samoa"
 
5787
+msgstr ""
 
5788
+
 
5789
+#. A city in Iowa in the United States
 
5790
+#: ../data/Locations.xml.in.h:289
 
5791
+msgid "Ames"
 
5792
+msgstr ""
 
5793
+
 
5794
+#. A city in Japan
 
5795
+#: ../data/Locations.xml.in.h:291
 
5796
+msgid "Ami"
 
5797
+msgstr ""
 
5798
+
 
5799
+#. The capital of Jordan.
 
5800
+#. "Amman" is the traditional English name.
 
5801
+#. The local name in Arabic is "'Amman".
 
5802
+#.
 
5803
+#: ../data/Locations.xml.in.h:296
 
5804
+msgid "Amman"
 
5805
+msgstr ""
 
5806
+
 
5807
+#. A city in Quebec in Canada
 
5808
+#: ../data/Locations.xml.in.h:298
 
5809
+msgid "Amqui"
 
5810
+msgstr ""
 
5811
+
 
5812
+#. A city in India
 
5813
+#. the local name in Punjabi is "ਅੰਮ੍ਰਿਤਸਰ"
 
5814
+#.
 
5815
+#: ../data/Locations.xml.in.h:302
 
5816
+msgid "Amritsar"
 
5817
+msgstr ""
 
5818
+
 
5819
+#. The capital of the Netherlands
 
5820
+#: ../data/Locations.xml.in.h:304
 
5821
+msgid "Amsterdam"
 
5822
+msgstr ""
 
5823
+
 
5824
+#. An American research station in Antarctica, which keeps
 
5825
+#. the same time as New Zealand. The string is only used in
 
5826
+#. places where "Antarctica" is already clear from context.
 
5827
+#.
 
5828
+#: ../data/Locations.xml.in.h:309
 
5829
+msgid "Amundsen-Scott South Pole Station (New Zealand Time)"
 
5830
+msgstr ""
 
5831
+
 
5832
+#. A city in Russia.
 
5833
+#. The local name in Russian is "Анадырь".
 
5834
+#.
 
5835
+#: ../data/Locations.xml.in.h:313
 
5836
+msgid "Anadyr'"
 
5837
+msgstr ""
 
5838
+
 
5839
+#. A city in California in the United States
 
5840
+#: ../data/Locations.xml.in.h:315
 
5841
+msgid "Anaheim"
 
5842
+msgstr ""
 
5843
+
 
5844
+#. A city in Alaska in the United States
 
5845
+#: ../data/Locations.xml.in.h:317
 
5846
+msgid "Anaktuvuk Pass"
 
5847
+msgstr ""
 
5848
+
 
5849
+#. A city in Russia.
 
5850
+#. The local name in Russian is "Анапа".
 
5851
+#.
 
5852
+#: ../data/Locations.xml.in.h:321
 
5853
+msgid "Anapa"
 
5854
+msgstr ""
 
5855
+
 
5856
+#. A city in Alaska in the United States
 
5857
+#: ../data/Locations.xml.in.h:323
 
5858
+msgid "Anchorage"
 
5859
+msgstr ""
 
5860
+
 
5861
+#. A city in Peru
 
5862
+#: ../data/Locations.xml.in.h:325
 
5863
+msgid "Andahuaylas"
 
5864
+msgstr ""
 
5865
+
 
5866
+#. A city in Alabama in the United States
 
5867
+#: ../data/Locations.xml.in.h:327
 
5868
+msgid "Andalusia"
 
5869
+msgstr ""
 
5870
+
 
5871
+#. AD - Andorra
 
5872
+#: ../data/Locations.xml.in.h:329
 
5873
+msgid "Andorra"
 
5874
+msgstr ""
 
5875
+
 
5876
+#. A city in New Jersey in the United States
 
5877
+#: ../data/Locations.xml.in.h:331
 
5878
+msgid "Andover"
 
5879
+msgstr ""
 
5880
+
 
5881
+#. A city in Greece
 
5882
+#: ../data/Locations.xml.in.h:333
 
5883
+msgid "Andravída"
 
5884
+msgstr ""
 
5885
+
 
5886
+#. A city in North Carolina in the United States
 
5887
+#: ../data/Locations.xml.in.h:335
 
5888
+msgid "Andrews"
 
5889
+msgstr ""
 
5890
+
 
5891
+#. A city in the Philippines
 
5892
+#: ../data/Locations.xml.in.h:337
 
5893
+msgid "Angeles"
 
5894
+msgstr ""
 
5895
+
 
5896
+#. A city in Minnesota in the United States
 
5897
+#: ../data/Locations.xml.in.h:339
 
5898
+msgid "Angle Inlet"
 
5899
+msgstr ""
 
5900
+
 
5901
+#. A city in Texas in the United States
 
5902
+#: ../data/Locations.xml.in.h:341
 
5903
+msgid "Angleton"
 
5904
+msgstr ""
 
5905
+
 
5906
+#. AO - Angola
 
5907
+#: ../data/Locations.xml.in.h:343
 
5908
+msgid "Angola"
 
5909
+msgstr ""
 
5910
+
 
5911
+#. A city in Alaska in the United States
 
5912
+#: ../data/Locations.xml.in.h:345
 
5913
+msgid "Angoon"
 
5914
+msgstr ""
 
5915
+
 
5916
+#. AI - Anguilla, a British territory in the Caribbean
 
5917
+#: ../data/Locations.xml.in.h:347
 
5918
+msgid "Anguilla"
 
5919
+msgstr ""
 
5920
+
 
5921
+#. A state/province/territory in China
 
5922
+#: ../data/Locations.xml.in.h:349
 
5923
+msgid "Anhui"
 
5924
+msgstr ""
 
5925
+
 
5926
+#. A city in Alaska in the United States
 
5927
+#: ../data/Locations.xml.in.h:351
 
5928
+msgid "Aniak"
 
5929
+msgstr ""
 
5930
+
 
5931
+#. The capital of Turkey
 
5932
+#: ../data/Locations.xml.in.h:353
 
5933
+msgid "Ankara"
 
5934
+msgstr ""
 
5935
+
 
5936
+#. A city in Madagascar
 
5937
+#: ../data/Locations.xml.in.h:355
 
5938
+msgid "Ankarena"
 
5939
+msgstr ""
 
5940
+
 
5941
+#. A city in Iowa in the United States
 
5942
+#: ../data/Locations.xml.in.h:357
 
5943
+msgid "Ankeny"
 
5944
+msgstr ""
 
5945
+
 
5946
+#. A city in Michigan in the United States
 
5947
+#: ../data/Locations.xml.in.h:359
 
5948
+msgid "Ann Arbor"
 
5949
+msgstr ""
 
5950
+
 
5951
+#. A city in Algeria
 
5952
+#: ../data/Locations.xml.in.h:361
 
5953
+msgid "Annaba"
 
5954
+msgstr ""
 
5955
+
 
5956
+#. A city in Maryland in the United States
 
5957
+#: ../data/Locations.xml.in.h:363
 
5958
+msgid "Annapolis"
 
5959
+msgstr ""
 
5960
+
 
5961
+#. A city in Alaska in the United States
 
5962
+#: ../data/Locations.xml.in.h:365
 
5963
+msgid "Annette"
 
5964
+msgstr ""
 
5965
+
 
5966
+#. A city in Alabama in the United States
 
5967
+#: ../data/Locations.xml.in.h:367
 
5968
+msgid "Anniston"
 
5969
+msgstr ""
 
5970
+
 
5971
+#. A city in Turkey
 
5972
+#: ../data/Locations.xml.in.h:369
 
5973
+msgid "Antalya"
 
5974
+msgstr ""
 
5975
+
 
5976
+#. The capital of Madagascar
 
5977
+#: ../data/Locations.xml.in.h:371
 
5978
+msgid "Antananarivo"
 
5979
+msgstr ""
 
5980
+
 
5981
+#. A city in Wisconsin in the United States
 
5982
+#: ../data/Locations.xml.in.h:373
 
5983
+msgid "Antigo"
 
5984
+msgstr ""
 
5985
+
 
5986
+#. AG - Antigua and Barbuda
 
5987
+#: ../data/Locations.xml.in.h:375
 
5988
+msgid "Antigua and Barbuda"
 
5989
+msgstr ""
 
5990
+
 
5991
+#. A city in Chile
 
5992
+#: ../data/Locations.xml.in.h:377
 
5993
+msgid "Antofagasta"
 
5994
+msgstr ""
 
5995
+
 
5996
+#. A city in Madagascar
 
5997
+#: ../data/Locations.xml.in.h:379
 
5998
+msgid "Antsiranana"
 
5999
+msgstr ""
 
6000
+
 
6001
+#. A city in Alaska in the United States
 
6002
+#: ../data/Locations.xml.in.h:381
 
6003
+msgid "Anvik"
 
6004
+msgstr ""
 
6005
+
 
6006
+#. A city in Goiás in Brazil
 
6007
+#: ../data/Locations.xml.in.h:383
 
6008
+msgid "Anápolis"
 
6009
+msgstr ""
 
6010
+
 
6011
+#. A city in Japan
 
6012
+#: ../data/Locations.xml.in.h:385
 
6013
+msgid "Aomori"
 
6014
+msgstr ""
 
6015
+
 
6016
+#. A city in Florida in the United States
 
6017
+#: ../data/Locations.xml.in.h:387
 
6018
+msgid "Apalachicola"
 
6019
+msgstr ""
 
6020
+
 
6021
+#. The capital of Samoa
 
6022
+#: ../data/Locations.xml.in.h:389
 
6023
+msgid "Apia"
 
6024
+msgstr ""
 
6025
+
 
6026
+#. A city in Kazakhstan.
 
6027
+#. The local name in Russian is "Aktau".
 
6028
+#.
 
6029
+#: ../data/Locations.xml.in.h:393
 
6030
+msgid "Aqtau"
 
6031
+msgstr ""
 
6032
+
 
6033
+#. A city in Kazakhstan.
 
6034
+#. The local name in Russian is "Aktobe".
 
6035
+#.
 
6036
+#: ../data/Locations.xml.in.h:397
 
6037
+msgid "Aqtöbe"
 
6038
+msgstr ""
 
6039
+
 
6040
+#. A city in Saudi Arabia
 
6041
+#: ../data/Locations.xml.in.h:399
 
6042
+msgid "Ar Ruqayyiqah"
 
6043
+msgstr ""
 
6044
+
 
6045
+#. A city in Sergipe in Brazil
 
6046
+#: ../data/Locations.xml.in.h:401
 
6047
+msgid "Aracaju"
 
6048
+msgstr ""
 
6049
+
 
6050
+#. A city in Romania
 
6051
+#: ../data/Locations.xml.in.h:403
 
6052
+msgid "Arad"
 
6053
+msgstr ""
 
6054
+
 
6055
+#. A city in California in the United States
 
6056
+#: ../data/Locations.xml.in.h:405
 
6057
+msgid "Arcata"
 
6058
+msgstr ""
 
6059
+
 
6060
+#. A city in Alaska in the United States
 
6061
+#: ../data/Locations.xml.in.h:407
 
6062
+msgid "Arctic Village"
 
6063
+msgstr ""
 
6064
+
 
6065
+#. A city in Iran.
 
6066
+#. The name is also written "اردبيل".
 
6067
+#.
 
6068
+#: ../data/Locations.xml.in.h:411
 
6069
+msgid "Ardabil"
 
6070
+msgstr ""
 
6071
+
 
6072
+#. A city in Oklahoma in the United States
 
6073
+#: ../data/Locations.xml.in.h:413
 
6074
+msgid "Ardmore"
 
6075
+msgstr ""
 
6076
+
 
6077
+#. A city in Peru
 
6078
+#: ../data/Locations.xml.in.h:415
 
6079
+msgid "Arequipa"
 
6080
+msgstr ""
 
6081
+
 
6082
+#. A city in Newfoundland and Labrador in Canada
 
6083
+#: ../data/Locations.xml.in.h:417
 
6084
+msgid "Argentia"
 
6085
+msgstr ""
 
6086
+
 
6087
+#. AR - Argentina
 
6088
+#: ../data/Locations.xml.in.h:419
 
6089
+msgid "Argentina"
 
6090
+msgstr ""
 
6091
+
 
6092
+#. A city in Greece
 
6093
+#: ../data/Locations.xml.in.h:421
 
6094
+msgid "Argostólion"
 
6095
+msgstr ""
 
6096
+
 
6097
+#. A city in Chile
 
6098
+#: ../data/Locations.xml.in.h:423
 
6099
+msgid "Arica"
 
6100
+msgstr ""
 
6101
+
 
6102
+#. A state/province/territory in United States
 
6103
+#: ../data/Locations.xml.in.h:425
 
6104
+msgid "Arizona"
 
6105
+msgstr ""
 
6106
+
 
6107
+#. A city in Arkansas in the United States
 
6108
+#: ../data/Locations.xml.in.h:427
 
6109
+msgid "Arkadelphia"
 
6110
+msgstr ""
 
6111
+
 
6112
+#. A state/province/territory in United States
 
6113
+#: ../data/Locations.xml.in.h:429
 
6114
+msgid "Arkansas"
 
6115
+msgstr ""
 
6116
+
 
6117
+#. A city in Russia.
 
6118
+#. The local name in Russian is "Архангельск".
 
6119
+#.
 
6120
+#: ../data/Locations.xml.in.h:433
 
6121
+msgid "Arkhangel'sk"
 
6122
+msgstr ""
 
6123
+
 
6124
+#. A city in Colombia
 
6125
+#: ../data/Locations.xml.in.h:435
 
6126
+msgid "Armenia"
 
6127
+msgstr ""
 
6128
+
 
6129
+#. A city in Spain
 
6130
+#: ../data/Locations.xml.in.h:437
 
6131
+msgid "Armilla"
 
6132
+msgstr ""
 
6133
+
 
6134
+#. A city in Saint Vincent and the Grenadines
 
6135
+#: ../data/Locations.xml.in.h:439
 
6136
+msgid "Arnos Vale"
 
6137
+msgstr ""
 
6138
+
 
6139
+#. A city in New Mexico in the United States
 
6140
+#: ../data/Locations.xml.in.h:441
 
6141
+msgid "Artesia"
 
6142
+msgstr ""
 
6143
+
 
6144
+#. A city in Uganda
 
6145
+#: ../data/Locations.xml.in.h:443
 
6146
+msgid "Arua"
 
6147
+msgstr ""
 
6148
+
 
6149
+#. AW - Aruba, a Caribbean island that is one of the three
 
6150
+#. constituent countries of the Kingdom of the Netherlands.
 
6151
+#.
 
6152
+#: ../data/Locations.xml.in.h:447
 
6153
+msgid "Aruba"
 
6154
+msgstr ""
 
6155
+
 
6156
+#. A city in Tanzania
 
6157
+#: ../data/Locations.xml.in.h:449
 
6158
+msgid "Arusha"
 
6159
+msgstr ""
 
6160
+
 
6161
+#. A city in Colorado in the United States
 
6162
+#: ../data/Locations.xml.in.h:451
 
6163
+msgid "Arvada"
 
6164
+msgstr ""
 
6165
+
 
6166
+#. A city in Nunavut in Canada
 
6167
+#: ../data/Locations.xml.in.h:453
 
6168
+msgid "Arviat"
 
6169
+msgstr ""
 
6170
+
 
6171
+#. A city in Japan
 
6172
+#: ../data/Locations.xml.in.h:455
 
6173
+msgid "Asahikawa"
 
6174
+msgstr ""
 
6175
+
 
6176
+#. A city in Guam
 
6177
+#: ../data/Locations.xml.in.h:457
 
6178
+msgid "Asatdas"
 
6179
+msgstr ""
 
6180
+
 
6181
+#. A city in North Carolina in the United States
 
6182
+#: ../data/Locations.xml.in.h:459
 
6183
+msgid "Asheboro"
 
6184
+msgstr ""
 
6185
+
 
6186
+#. A city in North Carolina in the United States
 
6187
+#: ../data/Locations.xml.in.h:461
 
6188
+msgid "Asheville"
 
6189
+msgstr ""
 
6190
+
 
6191
+#. The capital of Turkmenistan.
 
6192
+#. "Ashgabat" is the traditional English name.
 
6193
+#. The local name in Turkmen is "Asgabat".
 
6194
+#.
 
6195
+#: ../data/Locations.xml.in.h:466
 
6196
+msgid "Ashgabat"
 
6197
+msgstr ""
 
6198
+
 
6199
+#. A city in Japan
 
6200
+#: ../data/Locations.xml.in.h:468
 
6201
+msgid "Ashiya"
 
6202
+msgstr ""
 
6203
+
 
6204
+#. A city in Ohio in the United States
 
6205
+#: ../data/Locations.xml.in.h:470
 
6206
+msgid "Ashtabula"
 
6207
+msgstr ""
 
6208
+
 
6209
+#: ../data/Locations.xml.in.h:471
 
6210
+msgid "Asia"
 
6211
+msgstr ""
 
6212
+
 
6213
+#. A city in Colorado in the United States
 
6214
+#: ../data/Locations.xml.in.h:473
 
6215
+msgid "Aspen"
 
6216
+msgstr ""
 
6217
+
 
6218
+#. A city in Saskatchewan in Canada
 
6219
+#: ../data/Locations.xml.in.h:475
 
6220
+msgid "Assiniboia"
 
6221
+msgstr ""
 
6222
+
 
6223
+#. The capital of Kazakhstan
 
6224
+#: ../data/Locations.xml.in.h:477
 
6225
+msgid "Astana"
 
6226
+msgstr ""
 
6227
+
 
6228
+#. A city in Oregon in the United States
 
6229
+#: ../data/Locations.xml.in.h:479
 
6230
+msgid "Astoria"
 
6231
+msgstr ""
 
6232
+
 
6233
+#. A city in Russia.
 
6234
+#. The local name in Russian is "Астрахань".
 
6235
+#.
 
6236
+#: ../data/Locations.xml.in.h:483
 
6237
+msgid "Astrakhan'"
 
6238
+msgstr ""
 
6239
+
 
6240
+#. The capital of Paraguay
 
6241
+#: ../data/Locations.xml.in.h:485
 
6242
+msgid "Asunción"
 
6243
+msgstr ""
 
6244
+
 
6245
+#. A city in Egypt
 
6246
+#: ../data/Locations.xml.in.h:487
 
6247
+msgid "Aswan"
 
6248
+msgstr ""
 
6249
+
 
6250
+#. A city in Egypt
 
6251
+#: ../data/Locations.xml.in.h:489
 
6252
+msgid "Asyut"
 
6253
+msgstr ""
 
6254
+
 
6255
+#. A city in Saudi Arabia
 
6256
+#: ../data/Locations.xml.in.h:491
 
6257
+msgid "At Ta'if"
 
6258
+msgstr ""
 
6259
+
 
6260
+#. A city in Georgia in the United States
 
6261
+#: ../data/Locations.xml.in.h:493
 
6262
+msgid "Atlanta"
 
6263
+msgstr ""
 
6264
+
 
6265
+#. A city in New Jersey in the United States
 
6266
+#: ../data/Locations.xml.in.h:495
 
6267
+msgid "Atlantic City"
 
6268
+msgstr ""
 
6269
+
 
6270
+#. The time zone used on the east coast of Canada, in
 
6271
+#. Bermuda, and on many Caribbean islands. In
 
6272
+#. French-speaking parts of Canada it is called "Heure de
 
6273
+#. l'Atlantique". The string is only used in places where a
 
6274
+#. country is already clear from the context.
 
6275
+#.
 
6276
+#: ../data/Locations.xml.in.h:502
 
6277
+msgid "Atlantic Time"
 
6278
+msgstr ""
 
6279
+
 
6280
+#. This represents the time zone in the far eastern portion
 
6281
+#. of the Canadian province of Quebec, which is part of the
 
6282
+#. "Atlantic Time" zone, but does not observe Daylight
 
6283
+#. Saving Time with the rest of the zone.
 
6284
+#.
 
6285
+#: ../data/Locations.xml.in.h:508
 
6286
+msgid "Atlantic Time, no DST (Eastern Quebec)"
 
6287
+msgstr ""
 
6288
+
 
6289
+#. A city in Spain
 
6290
+#: ../data/Locations.xml.in.h:510
 
6291
+msgid "Atogo"
 
6292
+msgstr ""
 
6293
+
 
6294
+#. A city in Oklahoma in the United States
 
6295
+#: ../data/Locations.xml.in.h:512
 
6296
+msgid "Atoka"
 
6297
+msgstr ""
 
6298
+
 
6299
+#. A city in France
 
6300
+#: ../data/Locations.xml.in.h:514
 
6301
+msgid "Auch"
 
6302
+msgstr ""
 
6303
+
 
6304
+#. A city in New Zealand
 
6305
+#: ../data/Locations.xml.in.h:516
 
6306
+msgid "Auckland"
 
6307
+msgstr ""
 
6308
+
 
6309
+#. A city in Iowa in the United States
 
6310
+#: ../data/Locations.xml.in.h:518
 
6311
+msgid "Audubon"
 
6312
+msgstr ""
 
6313
+
 
6314
+#. A city in Bavaria in Germany
 
6315
+#: ../data/Locations.xml.in.h:520
 
6316
+msgid "Augsburg"
 
6317
+msgstr ""
 
6318
+
 
6319
+#. A city in India
 
6320
+#. the local name in Marathi is "औरंगाबाद"
 
6321
+#: ../data/Locations.xml.in.h:523
 
6322
+msgid "Aurangabad"
 
6323
+msgstr ""
 
6324
+
 
6325
+#. A city in France
 
6326
+#: ../data/Locations.xml.in.h:525
 
6327
+msgid "Aurillac"
 
6328
+msgstr ""
 
6329
+
 
6330
+#: ../data/Locations.xml.in.h:526
 
6331
+msgid "Australasia &amp; Oceania"
 
6332
+msgstr ""
 
6333
+
 
6334
+#. AU - Australia
 
6335
+#: ../data/Locations.xml.in.h:528
 
6336
+msgid "Australia"
 
6337
+msgstr ""
 
6338
+
 
6339
+#. A state/province/territory in Australia
 
6340
+#: ../data/Locations.xml.in.h:530
 
6341
+msgid "Australian Capital Territory"
 
6342
+msgstr ""
 
6343
+
 
6344
+#. AT - Austria
 
6345
+#: ../data/Locations.xml.in.h:532
 
6346
+msgid "Austria"
 
6347
+msgstr ""
 
6348
+
 
6349
+#. A city in California in the United States
 
6350
+#: ../data/Locations.xml.in.h:534
 
6351
+msgid "Avalon"
 
6352
+msgstr ""
 
6353
+
 
6354
+#. The capital of the Cook Islands
 
6355
+#: ../data/Locations.xml.in.h:536
 
6356
+msgid "Avarua"
 
6357
+msgstr ""
 
6358
+
 
6359
+#. A city in Italy
 
6360
+#: ../data/Locations.xml.in.h:538
 
6361
+msgid "Aviano"
 
6362
+msgstr ""
 
6363
+
 
6364
+#. A city in Spain
 
6365
+#: ../data/Locations.xml.in.h:540
 
6366
+msgid "Avilés"
 
6367
+msgstr ""
 
6368
+
 
6369
+#. A city in France
 
6370
+#: ../data/Locations.xml.in.h:542
 
6371
+msgid "Avord"
 
6372
+msgstr ""
 
6373
+
 
6374
+#. A city in Peru
 
6375
+#: ../data/Locations.xml.in.h:544
 
6376
+msgid "Ayacucho"
 
6377
+msgstr ""
 
6378
+
 
6379
+#. AZ - Azerbaijan
 
6380
+#: ../data/Locations.xml.in.h:546
 
6381
+msgid "Azerbaijan"
 
6382
+msgstr ""
 
6383
+
 
6384
+#. This refers to the time zone for the Azores. The string
 
6385
+#. is only used in places where "Portugal" is already
 
6386
+#. understood from context.
 
6387
+#.
 
6388
+#: ../data/Locations.xml.in.h:551
 
6389
+msgid "Azores"
 
6390
+msgstr ""
 
6391
+
 
6392
+#. A city in North Rhine-Westphalia in Germany
 
6393
+#: ../data/Locations.xml.in.h:553
 
6394
+msgid "Baal"
 
6395
+msgstr ""
 
6396
+
 
6397
+#. A city in Romania
 
6398
+#: ../data/Locations.xml.in.h:555
 
6399
+msgid "Bacău"
 
6400
+msgstr ""
 
6401
+
 
6402
+#. A city in Michigan in the United States
 
6403
+#: ../data/Locations.xml.in.h:557
 
6404
+msgid "Bad Axe"
 
6405
+msgstr ""
 
6406
+
 
6407
+#. A state/province/territory in Germany
 
6408
+#: ../data/Locations.xml.in.h:559
 
6409
+msgid "Baden-Württemberg"
 
6410
+msgstr ""
 
6411
+
 
6412
+#. A city in India
 
6413
+#: ../data/Locations.xml.in.h:561
 
6414
+msgid "Bagdogra"
 
6415
+msgstr ""
 
6416
+
 
6417
+#. A city in Quebec in Canada
 
6418
+#: ../data/Locations.xml.in.h:563
 
6419
+msgid "Bagotville"
 
6420
+msgstr ""
 
6421
+
 
6422
+#. BS - Bahamas
 
6423
+#: ../data/Locations.xml.in.h:565
 
6424
+msgid "Bahamas"
 
6425
+msgstr ""
 
6426
+
 
6427
+#. BH - Bahrain
 
6428
+#: ../data/Locations.xml.in.h:567
 
6429
+msgid "Bahrain"
 
6430
+msgstr ""
 
6431
+
 
6432
+#. A city in Romania
 
6433
+#: ../data/Locations.xml.in.h:569
 
6434
+msgid "Baia Mare"
 
6435
+msgstr ""
 
6436
+
 
6437
+#. A city in Quebec in Canada
 
6438
+#: ../data/Locations.xml.in.h:571
 
6439
+msgid "Baie-Comeau"
 
6440
+msgstr ""
 
6441
+
 
6442
+#. A city in Quebec in Canada
 
6443
+#: ../data/Locations.xml.in.h:573
 
6444
+msgid "Baie-Sainte-Catherine"
 
6445
+msgstr ""
 
6446
+
 
6447
+#. A city in Quebec in Canada
 
6448
+#: ../data/Locations.xml.in.h:575
 
6449
+msgid "Baie-de-la-Trinité"
 
6450
+msgstr ""
 
6451
+
 
6452
+#. A city in Georgia in the United States
 
6453
+#: ../data/Locations.xml.in.h:577
 
6454
+msgid "Bainbridge"
 
6455
+msgstr ""
 
6456
+
 
6457
+#. A state/province/territory in Mexico
 
6458
+#: ../data/Locations.xml.in.h:579
 
6459
+msgid "Baja California"
 
6460
+msgstr ""
 
6461
+
 
6462
+#. A state/province/territory in Mexico
 
6463
+#: ../data/Locations.xml.in.h:581
 
6464
+msgid "Baja California Sur"
 
6465
+msgstr ""
 
6466
+
 
6467
+#. A city in Montana in the United States
 
6468
+#: ../data/Locations.xml.in.h:583
 
6469
+msgid "Baker"
 
6470
+msgstr ""
 
6471
+
 
6472
+#. A city in Oregon in the United States
 
6473
+#: ../data/Locations.xml.in.h:585
 
6474
+msgid "Baker City"
 
6475
+msgstr ""
 
6476
+
 
6477
+#. A city in Nunavut in Canada
 
6478
+#: ../data/Locations.xml.in.h:587
 
6479
+msgid "Baker Lake"
 
6480
+msgstr ""
 
6481
+
 
6482
+#. A city in California in the United States
 
6483
+#: ../data/Locations.xml.in.h:589
 
6484
+msgid "Bakersfield"
 
6485
+msgstr ""
 
6486
+
 
6487
+#. The capital of Azerbaijan.
 
6488
+#. "Baku" is the traditional English name.
 
6489
+#. The local name is "Baki".
 
6490
+#.
 
6491
+#: ../data/Locations.xml.in.h:594
 
6492
+msgid "Baku"
 
6493
+msgstr ""
 
6494
+
 
6495
+#. A city in British Columbia in Canada
 
6496
+#: ../data/Locations.xml.in.h:596
 
6497
+msgid "Baldonnel"
 
6498
+msgstr ""
 
6499
+
 
6500
+#. A city in Turkey
 
6501
+#: ../data/Locations.xml.in.h:598
 
6502
+msgid "Balikesir"
 
6503
+msgstr ""
 
6504
+
 
6505
+#. A city in Chile
 
6506
+#: ../data/Locations.xml.in.h:600
 
6507
+msgid "Balmaceda"
 
6508
+msgstr ""
 
6509
+
 
6510
+#. A city in Maryland in the United States
 
6511
+#: ../data/Locations.xml.in.h:602
 
6512
+msgid "Baltimore"
 
6513
+msgstr ""
 
6514
+
 
6515
+#. A city in Grenada
 
6516
+#: ../data/Locations.xml.in.h:604
 
6517
+msgid "Bamboo"
 
6518
+msgstr ""
 
6519
+
 
6520
+#. A city in Ontario in Canada
 
6521
+#: ../data/Locations.xml.in.h:606
 
6522
+msgid "Bancroft"
 
6523
+msgstr ""
 
6524
+
 
6525
+#. A city in Iran.
 
6526
+#. The name is also written "بندر عباس".
 
6527
+#.
 
6528
+#: ../data/Locations.xml.in.h:610
 
6529
+msgid "Bandar 'Abbas"
 
6530
+msgstr ""
 
6531
+
 
6532
+#. The capital of Brunei
 
6533
+#: ../data/Locations.xml.in.h:612
 
6534
+msgid "Bandar Seri Begawan"
 
6535
+msgstr ""
 
6536
+
 
6537
+#. A city in Iran.
 
6538
+#. The name is also written "بندر بوشهر".
 
6539
+#.
 
6540
+#: ../data/Locations.xml.in.h:616
 
6541
+msgid "Bandar-e Bushehr"
 
6542
+msgstr ""
 
6543
+
 
6544
+#. A city in Iran.
 
6545
+#. The name is also written "بندر لنگه".
 
6546
+#.
 
6547
+#: ../data/Locations.xml.in.h:620
 
6548
+msgid "Bandar-e Lengeh"
 
6549
+msgstr ""
 
6550
+
 
6551
+#. A city in Iran.
 
6552
+#. The name is also written "بندر ماهشهر".
 
6553
+#.
 
6554
+#: ../data/Locations.xml.in.h:624
 
6555
+msgid "Bandar-e Mahshahr"
 
6556
+msgstr ""
 
6557
+
 
6558
+#. A city in Turkey
 
6559
+#: ../data/Locations.xml.in.h:626
 
6560
+msgid "Bandirma"
 
6561
+msgstr ""
 
6562
+
 
6563
+#. A city in Alberta in Canada
 
6564
+#: ../data/Locations.xml.in.h:628
 
6565
+msgid "Banff"
 
6566
+msgstr ""
 
6567
+
 
6568
+#. A city in India - local airport
 
6569
+#. "Bengaluru" is the new name
 
6570
+#.
 
6571
+#: ../data/Locations.xml.in.h:632
 
6572
+msgid "Bangalore"
 
6573
+msgstr ""
 
6574
+
 
6575
+#. A city in the Central African Republic
 
6576
+#: ../data/Locations.xml.in.h:634
 
6577
+msgid "Bangassou"
 
6578
+msgstr ""
 
6579
+
 
6580
+#. The capital of Thailand.
 
6581
+#. "Bangkok" is the traditional English name.
 
6582
+#. The local name in Thai is "Krung Thep / กรุงเทพฯ".
 
6583
+#.
 
6584
+#: ../data/Locations.xml.in.h:639
 
6585
+msgid "Bangkok"
 
6586
+msgstr ""
 
6587
+
 
6588
+#. BD - Bangladesh
 
6589
+#: ../data/Locations.xml.in.h:641
 
6590
+msgid "Bangladesh"
 
6591
+msgstr ""
 
6592
+
 
6593
+#. A city in Maine in the United States
 
6594
+#: ../data/Locations.xml.in.h:643
 
6595
+msgid "Bangor"
 
6596
+msgstr ""
 
6597
+
 
6598
+#. The capital of the Central African Republic
 
6599
+#: ../data/Locations.xml.in.h:645
 
6600
+msgid "Bangui"
 
6601
+msgstr ""
 
6602
+
 
6603
+#. A city in Libya
 
6604
+#: ../data/Locations.xml.in.h:647
 
6605
+msgid "Baninah"
 
6606
+msgstr ""
 
6607
+
 
6608
+#. A city in Bosnia and Herzegovina
 
6609
+#: ../data/Locations.xml.in.h:649
 
6610
+msgid "Banja Luka"
 
6611
+msgstr ""
 
6612
+
 
6613
+#. The capital of Gambia
 
6614
+#: ../data/Locations.xml.in.h:651
 
6615
+msgid "Banjul"
 
6616
+msgstr ""
 
6617
+
 
6618
+#. A city in the Cocos (Keeling) Islands
 
6619
+#: ../data/Locations.xml.in.h:653
 
6620
+msgid "Bantam Village"
 
6621
+msgstr ""
 
6622
+
 
6623
+#. A city in Maine in the United States
 
6624
+#: ../data/Locations.xml.in.h:655
 
6625
+msgid "Bar Harbor"
 
6626
+msgstr ""
 
6627
+
 
6628
+#. A city in Wisconsin in the United States
 
6629
+#: ../data/Locations.xml.in.h:657
 
6630
+msgid "Baraboo"
 
6631
+msgstr ""
 
6632
+
 
6633
+#. A city in the Dominican Republic
 
6634
+#: ../data/Locations.xml.in.h:659
 
6635
+msgid "Barahona"
 
6636
+msgstr ""
 
6637
+
 
6638
+#. A city in Spain
 
6639
+#: ../data/Locations.xml.in.h:661
 
6640
+msgid "Barajas"
 
6641
+msgstr ""
 
6642
+
 
6643
+#. A city in Minas Gerais in Brazil
 
6644
+#: ../data/Locations.xml.in.h:663
 
6645
+msgid "Barbacena"
 
6646
+msgstr ""
 
6647
+
 
6648
+#. BB - Barbados
 
6649
+#: ../data/Locations.xml.in.h:665
 
6650
+msgid "Barbados"
 
6651
+msgstr ""
 
6652
+
 
6653
+#. A city in Italy
 
6654
+#: ../data/Locations.xml.in.h:667
 
6655
+msgid "Bari"
 
6656
+msgstr ""
 
6657
+
 
6658
+#. A city in Venezuela
 
6659
+#: ../data/Locations.xml.in.h:669
 
6660
+msgid "Barinas"
 
6661
+msgstr ""
 
6662
+
 
6663
+#. A city in Russia.
 
6664
+#. The local name in Russian is "Барнаул".
 
6665
+#.
 
6666
+#: ../data/Locations.xml.in.h:673
 
6667
+msgid "Barnaul"
 
6668
+msgstr ""
 
6669
+
 
6670
+#. A city in Venezuela
 
6671
+#: ../data/Locations.xml.in.h:675
 
6672
+msgid "Barquisimeto"
 
6673
+msgstr ""
 
6674
+
 
6675
+#. A city in Mato Grosso in Brazil
 
6676
+#: ../data/Locations.xml.in.h:677
 
6677
+msgid "Barra do Garças"
 
6678
+msgstr ""
 
6679
+
 
6680
+#. A city in Colombia
 
6681
+#: ../data/Locations.xml.in.h:679
 
6682
+msgid "Barranquilla"
 
6683
+msgstr ""
 
6684
+
 
6685
+#. A city in Vermont in the United States
 
6686
+#: ../data/Locations.xml.in.h:681
 
6687
+msgid "Barre"
 
6688
+msgstr ""
 
6689
+
 
6690
+#. A city in Georgia in the United States
 
6691
+#: ../data/Locations.xml.in.h:683
 
6692
+msgid "Barretts"
 
6693
+msgstr ""
 
6694
+
 
6695
+#. A city in Alaska in the United States
 
6696
+#: ../data/Locations.xml.in.h:685
 
6697
+msgid "Barrow"
 
6698
+msgstr ""
 
6699
+
 
6700
+#. A city in Oklahoma in the United States
 
6701
+#: ../data/Locations.xml.in.h:687
 
6702
+msgid "Bartlesville"
 
6703
+msgstr ""
 
6704
+
 
6705
+#. A city in Florida in the United States
 
6706
+#: ../data/Locations.xml.in.h:689
 
6707
+msgid "Bartow"
 
6708
+msgstr ""
 
6709
+
 
6710
+#. A city in Switzerland
 
6711
+#: ../data/Locations.xml.in.h:691
 
6712
+msgid "Basel"
 
6713
+msgstr ""
 
6714
+
 
6715
+#. The capital of Guadeloupe
 
6716
+#: ../data/Locations.xml.in.h:693
 
6717
+msgid "Basse-Terre"
 
6718
+msgstr ""
 
6719
+
 
6720
+#. The capital of Saint Kitts and Nevis
 
6721
+#: ../data/Locations.xml.in.h:695
 
6722
+msgid "Basseterre"
 
6723
+msgstr ""
 
6724
+
 
6725
+#. A city in France
 
6726
+#: ../data/Locations.xml.in.h:697
 
6727
+msgid "Bastia"
 
6728
+msgstr ""
 
6729
+
 
6730
+#. A city in Arkansas in the United States
 
6731
+#: ../data/Locations.xml.in.h:699
 
6732
+msgid "Batesville"
 
6733
+msgstr ""
 
6734
+
 
6735
+#. A city in New Brunswick in Canada
 
6736
+#: ../data/Locations.xml.in.h:701
 
6737
+msgid "Bathurst"
 
6738
+msgstr ""
 
6739
+
 
6740
+#. A city in Algeria
 
6741
+#: ../data/Locations.xml.in.h:703
 
6742
+msgid "Batna"
 
6743
+msgstr ""
 
6744
+
 
6745
+#. A city in Louisiana in the United States
 
6746
+#: ../data/Locations.xml.in.h:705
 
6747
+msgid "Baton Rouge"
 
6748
+msgstr ""
 
6749
+
 
6750
+#. A city in Michigan in the United States
 
6751
+#: ../data/Locations.xml.in.h:707
 
6752
+msgid "Battle Creek"
 
6753
+msgstr ""
 
6754
+
 
6755
+#. A city in Minnesota in the United States
 
6756
+#: ../data/Locations.xml.in.h:709
 
6757
+msgid "Baudette"
 
6758
+msgstr ""
 
6759
+
 
6760
+#. A city in São Paulo in Brazil
 
6761
+#: ../data/Locations.xml.in.h:711
 
6762
+msgid "Bauru"
 
6763
+msgstr ""
 
6764
+
 
6765
+#. A state in Germany.  The local name is "Bayern". Please
 
6766
+#. use that unless you know that it has a different name in
 
6767
+#. your language.
 
6768
+#.
 
6769
+#: ../data/Locations.xml.in.h:716
 
6770
+msgid "Bavaria"
 
6771
+msgstr ""
 
6772
+
 
6773
+#. A city in Texas in the United States
 
6774
+#: ../data/Locations.xml.in.h:718
 
6775
+msgid "Bay City"
 
6776
+msgstr ""
 
6777
+
 
6778
+#. A city in Nova Scotia in Canada
 
6779
+#: ../data/Locations.xml.in.h:720
 
6780
+msgid "Bay Saint Lawrence"
 
6781
+msgstr ""
 
6782
+
 
6783
+#. A city in Ontario in Canada
 
6784
+#: ../data/Locations.xml.in.h:722
 
6785
+msgid "Beardmore"
 
6786
+msgstr ""
 
6787
+
 
6788
+#. A city in Nebraska in the United States
 
6789
+#: ../data/Locations.xml.in.h:724
 
6790
+msgid "Beatrice"
 
6791
+msgstr ""
 
6792
+
 
6793
+#. A city in Quebec in Canada
 
6794
+#: ../data/Locations.xml.in.h:726
 
6795
+msgid "Beauceville"
 
6796
+msgstr ""
 
6797
+
 
6798
+#. A city in Texas in the United States
 
6799
+#: ../data/Locations.xml.in.h:728
 
6800
+msgid "Beaumont"
 
6801
+msgstr ""
 
6802
+
 
6803
+#. A city in Quebec in Canada
 
6804
+#: ../data/Locations.xml.in.h:730
 
6805
+msgid "Beauport"
 
6806
+msgstr ""
 
6807
+
 
6808
+#. A city in France
 
6809
+#: ../data/Locations.xml.in.h:732
 
6810
+msgid "Beauvais"
 
6811
+msgstr ""
 
6812
+
 
6813
+#. A city in Brussels, Flemish and Walloon Brabant in
 
6814
+#. Belgium
 
6815
+#.
 
6816
+#: ../data/Locations.xml.in.h:736
 
6817
+msgid "Beauvechain"
 
6818
+msgstr ""
 
6819
+
 
6820
+#. A city in Pennsylvania in the United States
 
6821
+#: ../data/Locations.xml.in.h:738
 
6822
+msgid "Beaver Falls"
 
6823
+msgstr ""
 
6824
+
 
6825
+#. A city in Nova Scotia in Canada
 
6826
+#: ../data/Locations.xml.in.h:740
 
6827
+msgid "Beaver Harbour"
 
6828
+msgstr ""
 
6829
+
 
6830
+#. A city in Algeria
 
6831
+#: ../data/Locations.xml.in.h:742
 
6832
+msgid "Bechar"
 
6833
+msgstr ""
 
6834
+
 
6835
+#. A city in West Virginia in the United States
 
6836
+#: ../data/Locations.xml.in.h:744
 
6837
+msgid "Beckley"
 
6838
+msgstr ""
 
6839
+
 
6840
+#. A city in Mozambique
 
6841
+#: ../data/Locations.xml.in.h:746
 
6842
+msgid "Beira"
 
6843
+msgstr ""
 
6844
+
 
6845
+#. The capital of Lebanon.
 
6846
+#. "Beirut" is the traditional English name.
 
6847
+#. The local name is "Beyrouth".
 
6848
+#.
 
6849
+#: ../data/Locations.xml.in.h:751
 
6850
+msgid "Beirut"
 
6851
+msgstr ""
 
6852
+
 
6853
+#. A city in Portugal
 
6854
+#: ../data/Locations.xml.in.h:753
 
6855
+msgid "Beja"
 
6856
+msgstr ""
 
6857
+
 
6858
+#. A city in Algeria
 
6859
+#: ../data/Locations.xml.in.h:755
 
6860
+msgid "Bejaia"
 
6861
+msgstr ""
 
6862
+
 
6863
+#. BY - Belarus
 
6864
+#: ../data/Locations.xml.in.h:757
 
6865
+msgid "Belarus"
 
6866
+msgstr ""
 
6867
+
 
6868
+#. A city in Northern Ireland in the United Kingdom
 
6869
+#: ../data/Locations.xml.in.h:759
 
6870
+msgid "Belfast"
 
6871
+msgstr ""
 
6872
+
 
6873
+#. BE - Belgium. The local names for the country are "België"
 
6874
+#. (Dutch), Belgique (French), and Belgien (German).
 
6875
+#.
 
6876
+#: ../data/Locations.xml.in.h:763
 
6877
+msgid "Belgium"
 
6878
+msgstr ""
 
6879
+
 
6880
+#. The capital of Serbia.
 
6881
+#. "Belgrade" is the traditional English name.
 
6882
+#. The local name in Serbian is "Beograd".
 
6883
+#.
 
6884
+#: ../data/Locations.xml.in.h:768
 
6885
+msgid "Belgrade"
 
6886
+msgstr ""
 
6887
+
 
6888
+#. BZ - Belize
 
6889
+#: ../data/Locations.xml.in.h:770
 
6890
+msgid "Belize"
 
6891
+msgstr ""
 
6892
+
 
6893
+#. A city in Belize
 
6894
+#: ../data/Locations.xml.in.h:772
 
6895
+msgid "Belize City"
 
6896
+msgstr ""
 
6897
+
 
6898
+#. A city in British Columbia in Canada
 
6899
+#: ../data/Locations.xml.in.h:774
 
6900
+msgid "Bella Coola"
 
6901
+msgstr ""
 
6902
+
 
6903
+#. A city in Michigan in the United States
 
6904
+#: ../data/Locations.xml.in.h:776
 
6905
+msgid "Bellaire"
 
6906
+msgstr ""
 
6907
+
 
6908
+#. A city in Illinois in the United States
 
6909
+#: ../data/Locations.xml.in.h:778
 
6910
+msgid "Belleville"
 
6911
+msgstr ""
 
6912
+
 
6913
+#. A city in Washington in the United States
 
6914
+#: ../data/Locations.xml.in.h:780
 
6915
+msgid "Bellevue"
 
6916
+msgstr ""
 
6917
+
 
6918
+#. A city in Quebec in Canada
 
6919
+#: ../data/Locations.xml.in.h:782
 
6920
+msgid "Bellin"
 
6921
+msgstr ""
 
6922
+
 
6923
+#. A city in Washington in the United States
 
6924
+#: ../data/Locations.xml.in.h:784
 
6925
+msgid "Bellingham"
 
6926
+msgstr ""
 
6927
+
 
6928
+#. A city in New Jersey in the United States
 
6929
+#: ../data/Locations.xml.in.h:786
 
6930
+msgid "Belmar"
 
6931
+msgstr ""
 
6932
+
 
6933
+#. A city in Minas Gerais in Brazil
 
6934
+#: ../data/Locations.xml.in.h:788
 
6935
+msgid "Belo Horizonte"
 
6936
+msgstr ""
 
6937
+
 
6938
+#. A city in Pará in Brazil
 
6939
+#: ../data/Locations.xml.in.h:790
 
6940
+msgid "Belém"
 
6941
+msgstr ""
 
6942
+
 
6943
+#. A city in Minnesota in the United States
 
6944
+#: ../data/Locations.xml.in.h:792
 
6945
+msgid "Bemidji"
 
6946
+msgstr ""
 
6947
+
 
6948
+#. A city in India.
 
6949
+#. "Benares" is the traditional English name.
 
6950
+#. The local name is "Varanasi".
 
6951
+#. The local name in Hindi is "वाराणसी".
 
6952
+#.
 
6953
+#: ../data/Locations.xml.in.h:798
 
6954
+msgid "Benares"
 
6955
+msgstr ""
 
6956
+
 
6957
+#. BJ - Benin
 
6958
+#: ../data/Locations.xml.in.h:800
 
6959
+msgid "Benin"
 
6960
+msgstr ""
 
6961
+
 
6962
+#. A city in the Netherlands Antilles
 
6963
+#: ../data/Locations.xml.in.h:802
 
6964
+msgid "Benners"
 
6965
+msgstr ""
 
6966
+
 
6967
+#. A city in Vermont in the United States
 
6968
+#: ../data/Locations.xml.in.h:804
 
6969
+msgid "Bennington"
 
6970
+msgstr ""
 
6971
+
 
6972
+#. A city in Michigan in the United States
 
6973
+#: ../data/Locations.xml.in.h:806
 
6974
+msgid "Benton Harbor"
 
6975
+msgstr ""
 
6976
+
 
6977
+#. A city in Arkansas in the United States
 
6978
+#: ../data/Locations.xml.in.h:808
 
6979
+msgid "Bentonville"
 
6980
+msgstr ""
 
6981
+
 
6982
+#. A city in the Central African Republic
 
6983
+#: ../data/Locations.xml.in.h:810
 
6984
+msgid "Berberati"
 
6985
+msgstr ""
 
6986
+
 
6987
+#. A city in Manitoba in Canada
 
6988
+#: ../data/Locations.xml.in.h:812
 
6989
+msgid "Berens River"
 
6990
+msgstr ""
 
6991
+
 
6992
+#. A city in Italy
 
6993
+#: ../data/Locations.xml.in.h:814
 
6994
+msgid "Bergamo"
 
6995
+msgstr ""
 
6996
+
 
6997
+#. A city in Alberta in Canada
 
6998
+#: ../data/Locations.xml.in.h:816
 
6999
+msgid "Bergen"
 
7000
+msgstr ""
 
7001
+
 
7002
+#. A city in France
 
7003
+#: ../data/Locations.xml.in.h:818
 
7004
+msgid "Bergerac"
 
7005
+msgstr ""
 
7006
+
 
7007
+#. A city in California in the United States
 
7008
+#: ../data/Locations.xml.in.h:820
 
7009
+msgid "Berkeley"
 
7010
+msgstr ""
 
7011
+
 
7012
+#. A city in Norway
 
7013
+#: ../data/Locations.xml.in.h:822
 
7014
+msgid "Berlevåg"
 
7015
+msgstr ""
 
7016
+
 
7017
+#. BM - Bermuda, a British territory off the coast of the
 
7018
+#. United States
 
7019
+#.
 
7020
+#: ../data/Locations.xml.in.h:826
 
7021
+msgid "Bermuda"
 
7022
+msgstr ""
 
7023
+
 
7024
+#. The capital of Switzerland
 
7025
+#: ../data/Locations.xml.in.h:828
 
7026
+msgid "Bern"
 
7027
+msgstr ""
 
7028
+
 
7029
+#. A city in Algeria
 
7030
+#: ../data/Locations.xml.in.h:830
 
7031
+msgid "Berriane"
 
7032
+msgstr ""
 
7033
+
 
7034
+#. A city in Alaska in the United States
 
7035
+#: ../data/Locations.xml.in.h:832
 
7036
+msgid "Bethel"
 
7037
+msgstr ""
 
7038
+
 
7039
+#. A city in Alaska in the United States
 
7040
+#: ../data/Locations.xml.in.h:834
 
7041
+msgid "Bettles"
 
7042
+msgstr ""
 
7043
+
 
7044
+#. A city in Massachusetts in the United States
 
7045
+#: ../data/Locations.xml.in.h:836
 
7046
+msgid "Beverly"
 
7047
+msgstr ""
 
7048
+
 
7049
+#. A city in India
 
7050
+#. the local name in Gujrati is "ભાવનગર"
 
7051
+#. the local name in Hindi is "भावनगर"
 
7052
+#: ../data/Locations.xml.in.h:840
 
7053
+msgid "Bhavnagar"
 
7054
+msgstr ""
 
7055
+
 
7056
+#. A city in India.
 
7057
+#. The local name in Hindi is "भोपाल".
 
7058
+#.
 
7059
+#: ../data/Locations.xml.in.h:844
 
7060
+msgid "Bhopal"
 
7061
+msgstr ""
 
7062
+
 
7063
+#. A city in India.
 
7064
+#. The local name in Oriya is "ଭୁବେନଶ୍ବର".
 
7065
+#.
 
7066
+#: ../data/Locations.xml.in.h:848
 
7067
+msgid "Bhubaneshwar"
 
7068
+msgstr ""
 
7069
+
 
7070
+#. A city in India.
 
7071
+#: ../data/Locations.xml.in.h:850
 
7072
+msgid "Bhuj"
 
7073
+msgstr ""
 
7074
+
 
7075
+#. BT - Bhutan
 
7076
+#: ../data/Locations.xml.in.h:852
 
7077
+msgid "Bhutan"
 
7078
+msgstr ""
 
7079
+
 
7080
+#. A city in France
 
7081
+#: ../data/Locations.xml.in.h:854
 
7082
+msgid "Biarritz"
 
7083
+msgstr ""
 
7084
+
 
7085
+#. A city in Liège in Belgium
 
7086
+#: ../data/Locations.xml.in.h:856
 
7087
+msgid "Bierset"
 
7088
+msgstr ""
 
7089
+
 
7090
+#. A city in Wyoming in the United States
 
7091
+#: ../data/Locations.xml.in.h:858
 
7092
+msgid "Big Piney"
 
7093
+msgstr ""
 
7094
+
 
7095
+#. A city in Michigan in the United States
 
7096
+#: ../data/Locations.xml.in.h:860
 
7097
+msgid "Big Rapids"
 
7098
+msgstr ""
 
7099
+
 
7100
+#. A city in Texas in the United States
 
7101
+#: ../data/Locations.xml.in.h:862
 
7102
+msgid "Big Spring"
 
7103
+msgstr ""
 
7104
+
 
7105
+#. A city in Minnesota in the United States
 
7106
+#: ../data/Locations.xml.in.h:864
 
7107
+msgid "Bigfork"
 
7108
+msgstr ""
 
7109
+
 
7110
+#. A city in East and South East England in the United
 
7111
+#. Kingdom
 
7112
+#.
 
7113
+#: ../data/Locations.xml.in.h:868
 
7114
+msgid "Biggin Hill"
 
7115
+msgstr ""
 
7116
+
 
7117
+#. A city in Spain
 
7118
+#: ../data/Locations.xml.in.h:870
 
7119
+msgid "Bilbao"
 
7120
+msgstr ""
 
7121
+
 
7122
+#. A city in Montana in the United States
 
7123
+#: ../data/Locations.xml.in.h:872
 
7124
+msgid "Billings"
 
7125
+msgstr ""
 
7126
+
 
7127
+#. A city in Denmark
 
7128
+#: ../data/Locations.xml.in.h:874
 
7129
+msgid "Billund"
 
7130
+msgstr ""
 
7131
+
 
7132
+#. A city in Mississippi in the United States
 
7133
+#: ../data/Locations.xml.in.h:876
 
7134
+msgid "Biloxi"
 
7135
+msgstr ""
 
7136
+
 
7137
+#. A city in Thuringia in Germany
 
7138
+#: ../data/Locations.xml.in.h:878
 
7139
+msgid "Bindersleben"
 
7140
+msgstr ""
 
7141
+
 
7142
+#. A city in New York in the United States
 
7143
+#: ../data/Locations.xml.in.h:880
 
7144
+msgid "Binghamton"
 
7145
+msgstr ""
 
7146
+
 
7147
+#. A city in Malaysia
 
7148
+#: ../data/Locations.xml.in.h:882
 
7149
+msgid "Bintulu"
 
7150
+msgstr ""
 
7151
+
 
7152
+#. A city in Alaska in the United States
 
7153
+#: ../data/Locations.xml.in.h:884
 
7154
+msgid "Birchwood"
 
7155
+msgstr ""
 
7156
+
 
7157
+#. A city in Iran
 
7158
+#: ../data/Locations.xml.in.h:886
 
7159
+msgid "Birjand"
 
7160
+msgstr ""
 
7161
+
 
7162
+#. The capital of Kyrgyzstan
 
7163
+#: ../data/Locations.xml.in.h:888
 
7164
+msgid "Bishkek"
 
7165
+msgstr ""
 
7166
+
 
7167
+#. A city in California in the United States
 
7168
+#: ../data/Locations.xml.in.h:890
 
7169
+msgid "Bishop"
 
7170
+msgstr ""
 
7171
+
 
7172
+#. A city in Algeria
 
7173
+#: ../data/Locations.xml.in.h:892
 
7174
+msgid "Biskra"
 
7175
+msgstr ""
 
7176
+
 
7177
+#. A city in North Dakota in the United States
 
7178
+#: ../data/Locations.xml.in.h:894
 
7179
+msgid "Bismarck"
 
7180
+msgstr ""
 
7181
+
 
7182
+#. A city in Tunisia
 
7183
+#: ../data/Locations.xml.in.h:896
 
7184
+msgid "Bizerte"
 
7185
+msgstr ""
 
7186
+
 
7187
+#. A city in Montana in the United States
 
7188
+#: ../data/Locations.xml.in.h:898
 
7189
+msgid "Black Eagle"
 
7190
+msgstr ""
 
7191
+
 
7192
+#. A city in New York in the United States
 
7193
+#: ../data/Locations.xml.in.h:900
 
7194
+msgid "Black River"
 
7195
+msgstr ""
 
7196
+
 
7197
+#. A city in North West England in the United Kingdom
 
7198
+#: ../data/Locations.xml.in.h:902
 
7199
+msgid "Blackpool"
 
7200
+msgstr ""
 
7201
+
 
7202
+#. A city in Virginia in the United States
 
7203
+#: ../data/Locations.xml.in.h:904
 
7204
+msgid "Blacksburg"
 
7205
+msgstr ""
 
7206
+
 
7207
+#. A city in Quebec in Canada
 
7208
+#: ../data/Locations.xml.in.h:906
 
7209
+msgid "Blanc-Sablon"
 
7210
+msgstr ""
 
7211
+
 
7212
+#. A city in South Africa
 
7213
+#: ../data/Locations.xml.in.h:908
 
7214
+msgid "Bloemfontein"
 
7215
+msgstr ""
 
7216
+
 
7217
+#. A city in British Columbia in Canada
 
7218
+#: ../data/Locations.xml.in.h:910
 
7219
+msgid "Blue River"
 
7220
+msgstr ""
 
7221
+
 
7222
+#. A city in West Virginia in the United States
 
7223
+#: ../data/Locations.xml.in.h:912
 
7224
+msgid "Bluefield"
 
7225
+msgstr ""
 
7226
+
 
7227
+#. A city in Nicaragua
 
7228
+#: ../data/Locations.xml.in.h:914
 
7229
+msgid "Bluefields"
 
7230
+msgstr ""
 
7231
+
 
7232
+#. A city in California in the United States
 
7233
+#: ../data/Locations.xml.in.h:916
 
7234
+msgid "Blythe"
 
7235
+msgstr ""
 
7236
+
 
7237
+#. A city in Arkansas in the United States
 
7238
+#: ../data/Locations.xml.in.h:918
 
7239
+msgid "Blytheville"
 
7240
+msgstr ""
 
7241
+
 
7242
+#. A city in Roraima in Brazil
 
7243
+#: ../data/Locations.xml.in.h:920
 
7244
+msgid "Boa Vista"
 
7245
+msgstr ""
 
7246
+
 
7247
+#. A city in British Columbia in Canada
 
7248
+#: ../data/Locations.xml.in.h:922
 
7249
+msgid "Boat Basin"
 
7250
+msgstr ""
 
7251
+
 
7252
+#. A city in Florida in the United States
 
7253
+#: ../data/Locations.xml.in.h:924
 
7254
+msgid "Boca Raton"
 
7255
+msgstr ""
 
7256
+
 
7257
+#. A city in Turkey
 
7258
+#: ../data/Locations.xml.in.h:926
 
7259
+msgid "Bodrum"
 
7260
+msgstr ""
 
7261
+
 
7262
+#. A city in Norway
 
7263
+#: ../data/Locations.xml.in.h:928
 
7264
+msgid "Bodø"
 
7265
+msgstr ""
 
7266
+
 
7267
+#. The capital of Colombia
 
7268
+#: ../data/Locations.xml.in.h:930
 
7269
+msgid "Bogotá"
 
7270
+msgstr ""
 
7271
+
 
7272
+#. A city in North Carolina in the United States
 
7273
+#: ../data/Locations.xml.in.h:932
 
7274
+msgid "Bogue"
 
7275
+msgstr ""
 
7276
+
 
7277
+#. A city in Idaho in the United States
 
7278
+#: ../data/Locations.xml.in.h:934
 
7279
+msgid "Boise"
 
7280
+msgstr ""
 
7281
+
 
7282
+#. A city in Croatia
 
7283
+#: ../data/Locations.xml.in.h:936
 
7284
+msgid "Bol"
 
7285
+msgstr ""
 
7286
+
 
7287
+#. BO - Bolivia
 
7288
+#: ../data/Locations.xml.in.h:938
 
7289
+msgid "Bolivia"
 
7290
+msgstr ""
 
7291
+
 
7292
+#. A city in Norway
 
7293
+#: ../data/Locations.xml.in.h:940
 
7294
+msgid "Bolle"
 
7295
+msgstr ""
 
7296
+
 
7297
+#. A city in Italy
 
7298
+#: ../data/Locations.xml.in.h:942
 
7299
+msgid "Bologna"
 
7300
+msgstr ""
 
7301
+
 
7302
+#. A city in Norway
 
7303
+#: ../data/Locations.xml.in.h:944
 
7304
+msgid "Boltåsen"
 
7305
+msgstr ""
 
7306
+
 
7307
+#. A city in Italy
 
7308
+#: ../data/Locations.xml.in.h:946
 
7309
+msgid "Bolzano"
 
7310
+msgstr ""
 
7311
+
 
7312
+#. A city in Bahia in Brazil
 
7313
+#: ../data/Locations.xml.in.h:948
 
7314
+msgid "Bom Jesus da Lapa"
 
7315
+msgstr ""
 
7316
+
 
7317
+#. A city in Trinidad and Tobago
 
7318
+#: ../data/Locations.xml.in.h:950
 
7319
+msgid "Bon Accord"
 
7320
+msgstr ""
 
7321
+
 
7322
+#. A city in North Rhine-Westphalia in Germany
 
7323
+#: ../data/Locations.xml.in.h:952
 
7324
+msgid "Bonn"
 
7325
+msgstr ""
 
7326
+
 
7327
+#. A city in Louisiana in the United States
 
7328
+#: ../data/Locations.xml.in.h:954
 
7329
+msgid "Boothville"
 
7330
+msgstr ""
 
7331
+
 
7332
+#. A city in Ontario in Canada
 
7333
+#: ../data/Locations.xml.in.h:956
 
7334
+msgid "Borden"
 
7335
+msgstr ""
 
7336
+
 
7337
+#. A city in Texas in the United States
 
7338
+#: ../data/Locations.xml.in.h:958
 
7339
+msgid "Borger"
 
7340
+msgstr ""
 
7341
+
 
7342
+#. A city in Sweden
 
7343
+#: ../data/Locations.xml.in.h:960
 
7344
+msgid "Borlänge"
 
7345
+msgstr ""
 
7346
+
 
7347
+#. A city in Ukraine
 
7348
+#: ../data/Locations.xml.in.h:962
 
7349
+msgid "Boryspil'"
 
7350
+msgstr ""
 
7351
+
 
7352
+#. A city in Wisconsin in the United States
 
7353
+#: ../data/Locations.xml.in.h:964
 
7354
+msgid "Boscobel"
 
7355
+msgstr ""
 
7356
+
 
7357
+#. A city in South and South West England in the United
 
7358
+#. Kingdom
 
7359
+#.
 
7360
+#: ../data/Locations.xml.in.h:968
 
7361
+msgid "Boscombe"
 
7362
+msgstr ""
 
7363
+
 
7364
+#. BA - Bosnia and Herzegovina
 
7365
+#: ../data/Locations.xml.in.h:970
 
7366
+msgid "Bosnia and Herzegovina"
 
7367
+msgstr ""
 
7368
+
 
7369
+#. A city in Massachusetts in the United States
 
7370
+#: ../data/Locations.xml.in.h:972
 
7371
+msgid "Boston"
 
7372
+msgstr ""
 
7373
+
 
7374
+#. BW - Botswana
 
7375
+#: ../data/Locations.xml.in.h:974
 
7376
+msgid "Botswana"
 
7377
+msgstr ""
 
7378
+
 
7379
+#. A city in Algeria
 
7380
+#: ../data/Locations.xml.in.h:976
 
7381
+msgid "Bou Saada"
 
7382
+msgstr ""
 
7383
+
 
7384
+#. A city in Senegal
 
7385
+#: ../data/Locations.xml.in.h:978
 
7386
+msgid "Boukot Ouolof"
 
7387
+msgstr ""
 
7388
+
 
7389
+#. A city in France
 
7390
+#: ../data/Locations.xml.in.h:980
 
7391
+msgid "Bourges"
 
7392
+msgstr ""
 
7393
+
 
7394
+#. A city in South and South West England in the United
 
7395
+#. Kingdom
 
7396
+#.
 
7397
+#: ../data/Locations.xml.in.h:984
 
7398
+msgid "Bournemouth"
 
7399
+msgstr ""
 
7400
+
 
7401
+#. A city in Alberta in Canada
 
7402
+#: ../data/Locations.xml.in.h:986
 
7403
+msgid "Bow Island"
 
7404
+msgstr ""
 
7405
+
 
7406
+#. A city in Kentucky in the United States
 
7407
+#: ../data/Locations.xml.in.h:988
 
7408
+msgid "Bowling Green"
 
7409
+msgstr ""
 
7410
+
 
7411
+#. A city in North Dakota in the United States
 
7412
+#: ../data/Locations.xml.in.h:990
 
7413
+msgid "Bowman"
 
7414
+msgstr ""
 
7415
+
 
7416
+#. A city in South Dakota in the United States
 
7417
+#: ../data/Locations.xml.in.h:992
 
7418
+msgid "Box Elder"
 
7419
+msgstr ""
 
7420
+
 
7421
+#. A city in Montana in the United States
 
7422
+#: ../data/Locations.xml.in.h:994
 
7423
+msgid "Bozeman"
 
7424
+msgstr ""
 
7425
+
 
7426
+#. A city in Pennsylvania in the United States
 
7427
+#: ../data/Locations.xml.in.h:996
 
7428
+msgid "Bradford"
 
7429
+msgstr ""
 
7430
+
 
7431
+#. A city in Texas in the United States
 
7432
+#: ../data/Locations.xml.in.h:998
 
7433
+msgid "Brady"
 
7434
+msgstr ""
 
7435
+
 
7436
+#. A city in Minnesota in the United States
 
7437
+#: ../data/Locations.xml.in.h:1000
 
7438
+msgid "Brainerd"
 
7439
+msgstr ""
 
7440
+
 
7441
+#. A state/province/territory in Germany
 
7442
+#: ../data/Locations.xml.in.h:1002
 
7443
+msgid "Brandenburg"
 
7444
+msgstr ""
 
7445
+
 
7446
+#. A city in Manitoba in Canada
 
7447
+#: ../data/Locations.xml.in.h:1004
 
7448
+msgid "Brandon"
 
7449
+msgstr ""
 
7450
+
 
7451
+#. The capital of Brazil
 
7452
+#: ../data/Locations.xml.in.h:1006
 
7453
+msgid "Brasília"
 
7454
+msgstr ""
 
7455
+
 
7456
+#. This represents the official "base" time zone in Brazil,
 
7457
+#. covering the capital city of Brasília, and those states
 
7458
+#. that choose to follow it. Each Brazilian state decides
 
7459
+#. on its own each year whether or not to observe Daylight
 
7460
+#. Saving Time. The tzdata database breaks the states up
 
7461
+#. into groups of states that generally make the same
 
7462
+#. decision in a given year. Thus, in any given year,
 
7463
+#. several of the time zones will appear to be redundant,
 
7464
+#. but exactly which ones seem redundant may differ from
 
7465
+#. year to year, and there's no good way to identify the
 
7466
+#. zones other than by listing states.  Anyway, "Brasília
 
7467
+#. Time" is the most common timezone, being used by about a
 
7468
+#. third of the states in Brazil (Distrito Federal,
 
7469
+#. Espírito Santo, Goiás, Minas Gerais, Paraná, Rio de
 
7470
+#. Janeiro, Rio Grande do Sul, Santa Catarina, and São
 
7471
+#. Paulo). This string is only used in places where
 
7472
+#. "Brazil" is already clear from context.
 
7473
+#.
 
7474
+#: ../data/Locations.xml.in.h:1025
 
7475
+msgid "Brasília Time"
 
7476
+msgstr ""
 
7477
+
 
7478
+#. The capital of Slovakia
 
7479
+#: ../data/Locations.xml.in.h:1027
 
7480
+msgid "Bratislava"
 
7481
+msgstr ""
 
7482
+
 
7483
+#. A city in Russia.
 
7484
+#. The local name in Russian is "Брацк".
 
7485
+#.
 
7486
+#: ../data/Locations.xml.in.h:1031
 
7487
+msgid "Bratsk"
 
7488
+msgstr ""
 
7489
+
 
7490
+#. A city in Lower Saxony in Germany
 
7491
+#: ../data/Locations.xml.in.h:1033
 
7492
+msgid "Braunschweig"
 
7493
+msgstr ""
 
7494
+
 
7495
+#. BR - Brazil
 
7496
+#: ../data/Locations.xml.in.h:1035
 
7497
+msgid "Brazil"
 
7498
+msgstr ""
 
7499
+
 
7500
+#. The capital of the Republic of the Congo
 
7501
+#: ../data/Locations.xml.in.h:1037
 
7502
+msgid "Brazzaville"
 
7503
+msgstr ""
 
7504
+
 
7505
+#. A city in North Rhine-Westphalia in Germany
 
7506
+#: ../data/Locations.xml.in.h:1039
 
7507
+msgid "Bredeck"
 
7508
+msgstr ""
 
7509
+
 
7510
+#. A city in Washington in the United States
 
7511
+#: ../data/Locations.xml.in.h:1041
 
7512
+msgid "Bremerton"
 
7513
+msgstr ""
 
7514
+
 
7515
+#. A city in Texas in the United States
 
7516
+#: ../data/Locations.xml.in.h:1043
 
7517
+msgid "Brenham"
 
7518
+msgstr ""
 
7519
+
 
7520
+#. A city in Italy
 
7521
+#: ../data/Locations.xml.in.h:1045
 
7522
+msgid "Brescia"
 
7523
+msgstr ""
 
7524
+
 
7525
+#. A city in Italy
 
7526
+#: ../data/Locations.xml.in.h:1047
 
7527
+msgid "Breuil-Cervinia"
 
7528
+msgstr ""
 
7529
+
 
7530
+#. A city in Connecticut in the United States
 
7531
+#: ../data/Locations.xml.in.h:1049
 
7532
+msgid "Bridgeport"
 
7533
+msgstr ""
 
7534
+
 
7535
+#. The capital of Barbados
 
7536
+#: ../data/Locations.xml.in.h:1051
 
7537
+msgid "Bridgetown"
 
7538
+msgstr ""
 
7539
+
 
7540
+#. A city in Italy
 
7541
+#: ../data/Locations.xml.in.h:1053
 
7542
+msgid "Brindisi"
 
7543
+msgstr ""
 
7544
+
 
7545
+#. A city in Queensland in Australia
 
7546
+#: ../data/Locations.xml.in.h:1055
 
7547
+msgid "Brisbane"
 
7548
+msgstr ""
 
7549
+
 
7550
+#. A city in South and South West England in the United
 
7551
+#. Kingdom
 
7552
+#.
 
7553
+#: ../data/Locations.xml.in.h:1059
 
7554
+msgid "Bristol"
 
7555
+msgstr ""
 
7556
+
 
7557
+#. A state/province/territory in Canada
 
7558
+#: ../data/Locations.xml.in.h:1061
 
7559
+msgid "British Columbia"
 
7560
+msgstr ""
 
7561
+
 
7562
+#. IO - British Indian Ocean Territory, which is exactly what
 
7563
+#. it sounds like.
 
7564
+#.
 
7565
+#: ../data/Locations.xml.in.h:1065
 
7566
+msgid "British Indian Ocean Territory"
 
7567
+msgstr ""
 
7568
+
 
7569
+#. VG - British Virgin Islands, a British territory in the
 
7570
+#. Caribbean
 
7571
+#.
 
7572
+#: ../data/Locations.xml.in.h:1069
 
7573
+msgid "British Virgin Islands"
 
7574
+msgstr ""
 
7575
+
 
7576
+#. A city in France
 
7577
+#: ../data/Locations.xml.in.h:1071
 
7578
+msgid "Brive"
 
7579
+msgstr ""
 
7580
+
 
7581
+#. A city in East and South East England in the United
 
7582
+#. Kingdom
 
7583
+#.
 
7584
+#: ../data/Locations.xml.in.h:1075
 
7585
+msgid "Brize Norton"
 
7586
+msgstr ""
 
7587
+
 
7588
+#. A city in the Czech Republic
 
7589
+#: ../data/Locations.xml.in.h:1077
 
7590
+msgid "Brno"
 
7591
+msgstr ""
 
7592
+
 
7593
+#. A city in Saskatchewan in Canada
 
7594
+#: ../data/Locations.xml.in.h:1079
 
7595
+msgid "Broadview"
 
7596
+msgstr ""
 
7597
+
 
7598
+#. A city in Nebraska in the United States
 
7599
+#: ../data/Locations.xml.in.h:1081
 
7600
+msgid "Broken Bow"
 
7601
+msgstr ""
 
7602
+
 
7603
+#. A city in Alberta in Canada
 
7604
+#: ../data/Locations.xml.in.h:1083
 
7605
+msgid "Brooks"
 
7606
+msgstr ""
 
7607
+
 
7608
+#. A city in Florida in the United States
 
7609
+#: ../data/Locations.xml.in.h:1085
 
7610
+msgid "Brooksville"
 
7611
+msgstr ""
 
7612
+
 
7613
+#. A city in Western Australia in Australia
 
7614
+#: ../data/Locations.xml.in.h:1087
 
7615
+msgid "Broome"
 
7616
+msgstr ""
 
7617
+
 
7618
+#. A city in Colorado in the United States
 
7619
+#: ../data/Locations.xml.in.h:1089
 
7620
+msgid "Broomfield"
 
7621
+msgstr ""
 
7622
+
 
7623
+#. A city in Montana in the United States
 
7624
+#: ../data/Locations.xml.in.h:1091
 
7625
+msgid "Browning"
 
7626
+msgstr ""
 
7627
+
 
7628
+#. A city in Texas in the United States
 
7629
+#: ../data/Locations.xml.in.h:1093
 
7630
+msgid "Brownsville"
 
7631
+msgstr ""
 
7632
+
 
7633
+#. A city in Texas in the United States
 
7634
+#: ../data/Locations.xml.in.h:1095
 
7635
+msgid "Brownwood"
 
7636
+msgstr ""
 
7637
+
 
7638
+#. BN - Brunei Darussalam
 
7639
+#: ../data/Locations.xml.in.h:1097
 
7640
+msgid "Brunei"
 
7641
+msgstr ""
 
7642
+
 
7643
+#. The capital of Belgium.
 
7644
+#. "Brussels" is the traditional English name.
 
7645
+#. The local name in French is "Bruxelles".
 
7646
+#. The local name in Dutch is "Brussel".
 
7647
+#.
 
7648
+#: ../data/Locations.xml.in.h:1103
 
7649
+msgid "Brussels"
 
7650
+msgstr ""
 
7651
+
 
7652
+#. A state in Belgium. local name (nl): Brussel, Vlaams- en
 
7653
+#. Waals-Brabant. local name (fr): Bruxelles, Brabant flamand
 
7654
+#. et wallon. local name (de): Brüssel, Flämish- und
 
7655
+#. Wallonisch-Brabant.
 
7656
+#.
 
7657
+#: ../data/Locations.xml.in.h:1109
 
7658
+msgid "Brussels, Flemish and Walloon Brabant"
 
7659
+msgstr ""
 
7660
+
 
7661
+#. A city in Russia.
 
7662
+#. The local name in Russian is "Брянск".
 
7663
+#.
 
7664
+#: ../data/Locations.xml.in.h:1113
 
7665
+msgid "Bryansk"
 
7666
+msgstr ""
 
7667
+
 
7668
+#. A city in Utah in the United States
 
7669
+#: ../data/Locations.xml.in.h:1115
 
7670
+msgid "Bryce Canyon"
 
7671
+msgstr ""
 
7672
+
 
7673
+#. A city in Norway
 
7674
+#: ../data/Locations.xml.in.h:1117
 
7675
+msgid "Brønnøysund"
 
7676
+msgstr ""
 
7677
+
 
7678
+#. A city in Colombia
 
7679
+#: ../data/Locations.xml.in.h:1119
 
7680
+msgid "Bucaramanga"
 
7681
+msgstr ""
 
7682
+
 
7683
+#. The capital of Romania.
 
7684
+#. "Bucharest" is the traditional English name.
 
7685
+#. The local name in Romanian is "Bucureşti".
 
7686
+#.
 
7687
+#: ../data/Locations.xml.in.h:1124
 
7688
+msgid "Bucharest"
 
7689
+msgstr ""
 
7690
+
 
7691
+#. A city in West Virginia in the United States
 
7692
+#: ../data/Locations.xml.in.h:1126
 
7693
+msgid "Buckhannon"
 
7694
+msgstr ""
 
7695
+
 
7696
+#. A city in Alaska in the United States
 
7697
+#: ../data/Locations.xml.in.h:1128
 
7698
+msgid "Buckland"
 
7699
+msgstr ""
 
7700
+
 
7701
+#. The capital of Hungary
 
7702
+#: ../data/Locations.xml.in.h:1130
 
7703
+msgid "Budapest"
 
7704
+msgstr ""
 
7705
+
 
7706
+#. The capital of Argentina
 
7707
+#: ../data/Locations.xml.in.h:1132
 
7708
+msgid "Buenos Aires"
 
7709
+msgstr ""
 
7710
+
 
7711
+#. A city in Saskatchewan in Canada
 
7712
+#: ../data/Locations.xml.in.h:1134
 
7713
+msgid "Buffalo Narrows"
 
7714
+msgstr ""
 
7715
+
 
7716
+#. The capital of Burundi
 
7717
+#: ../data/Locations.xml.in.h:1136
 
7718
+msgid "Bujumbura"
 
7719
+msgstr ""
 
7720
+
 
7721
+#. A city in Tanzania
 
7722
+#: ../data/Locations.xml.in.h:1138
 
7723
+msgid "Bukoba"
 
7724
+msgstr ""
 
7725
+
 
7726
+#. BG - Bulgaria
 
7727
+#: ../data/Locations.xml.in.h:1140
 
7728
+msgid "Bulgaria"
 
7729
+msgstr ""
 
7730
+
 
7731
+#. A city in Arizona in the United States
 
7732
+#: ../data/Locations.xml.in.h:1142
 
7733
+msgid "Bullhead City"
 
7734
+msgstr ""
 
7735
+
 
7736
+#. A city in Western Australia in Australia
 
7737
+#: ../data/Locations.xml.in.h:1144
 
7738
+msgid "Bullsbrook"
 
7739
+msgstr ""
 
7740
+
 
7741
+#. A city in California in the United States
 
7742
+#: ../data/Locations.xml.in.h:1146
 
7743
+msgid "Burbank"
 
7744
+msgstr ""
 
7745
+
 
7746
+#. A city in Turkey
 
7747
+#: ../data/Locations.xml.in.h:1148
 
7748
+msgid "Burdur"
 
7749
+msgstr ""
 
7750
+
 
7751
+#. A city in Bulgaria
 
7752
+#: ../data/Locations.xml.in.h:1150
 
7753
+msgid "Burgas"
 
7754
+msgstr ""
 
7755
+
 
7756
+#. BF - Burkina Faso
 
7757
+#: ../data/Locations.xml.in.h:1152
 
7758
+msgid "Burkina Faso"
 
7759
+msgstr ""
 
7760
+
 
7761
+#. A city in Idaho in the United States
 
7762
+#: ../data/Locations.xml.in.h:1154
 
7763
+msgid "Burley"
 
7764
+msgstr ""
 
7765
+
 
7766
+#. A city in Texas in the United States
 
7767
+#: ../data/Locations.xml.in.h:1156
 
7768
+msgid "Burnet"
 
7769
+msgstr ""
 
7770
+
 
7771
+#. A city in Oregon in the United States
 
7772
+#: ../data/Locations.xml.in.h:1158
 
7773
+msgid "Burns"
 
7774
+msgstr ""
 
7775
+
 
7776
+#. A city in British Columbia in Canada
 
7777
+#: ../data/Locations.xml.in.h:1160
 
7778
+msgid "Burns Lake"
 
7779
+msgstr ""
 
7780
+
 
7781
+#. A city in Turkey
 
7782
+#: ../data/Locations.xml.in.h:1162
 
7783
+msgid "Bursa"
 
7784
+msgstr ""
 
7785
+
 
7786
+#. BI - Burundi
 
7787
+#: ../data/Locations.xml.in.h:1164
 
7788
+msgid "Burundi"
 
7789
+msgstr ""
 
7790
+
 
7791
+#. A city in Yukon Territory in Canada
 
7792
+#: ../data/Locations.xml.in.h:1166
 
7793
+msgid "Burwash Landing"
 
7794
+msgstr ""
 
7795
+
 
7796
+#. A city in South and South West England in the United
 
7797
+#. Kingdom
 
7798
+#.
 
7799
+#: ../data/Locations.xml.in.h:1170
 
7800
+msgid "Butes"
 
7801
+msgstr ""
 
7802
+
 
7803
+#. A city in Pennsylvania in the United States
 
7804
+#: ../data/Locations.xml.in.h:1172
 
7805
+msgid "Butler"
 
7806
+msgstr ""
 
7807
+
 
7808
+#. A city in Montana in the United States
 
7809
+#: ../data/Locations.xml.in.h:1174
 
7810
+msgid "Butte"
 
7811
+msgstr ""
 
7812
+
 
7813
+#. A city in Norway
 
7814
+#: ../data/Locations.xml.in.h:1176
 
7815
+msgid "Båtsfjord"
 
7816
+msgstr ""
 
7817
+
 
7818
+#. A city in France
 
7819
+#: ../data/Locations.xml.in.h:1178
 
7820
+msgid "Béziers"
 
7821
+msgstr ""
 
7822
+
 
7823
+#. A city in Rhineland-Palatinate in Germany
 
7824
+#: ../data/Locations.xml.in.h:1180
 
7825
+msgid "Büchel"
 
7826
+msgstr ""
 
7827
+
 
7828
+#. A city in Pará in Brazil
 
7829
+#: ../data/Locations.xml.in.h:1182
 
7830
+msgid "Cachimbo"
 
7831
+msgstr ""
 
7832
+
 
7833
+#. A city in Michigan in the United States
 
7834
+#: ../data/Locations.xml.in.h:1184
 
7835
+msgid "Cadillac"
 
7836
+msgstr ""
 
7837
+
 
7838
+#. A city in France
 
7839
+#: ../data/Locations.xml.in.h:1186
 
7840
+msgid "Caen"
 
7841
+msgstr ""
 
7842
+
 
7843
+#. A city in Italy
 
7844
+#: ../data/Locations.xml.in.h:1188
 
7845
+msgid "Cagliari"
 
7846
+msgstr ""
 
7847
+
 
7848
+#. A city in Illinois in the United States
 
7849
+#: ../data/Locations.xml.in.h:1190
 
7850
+msgid "Cahokia"
 
7851
+msgstr ""
 
7852
+
 
7853
+#. A city in Queensland in Australia
 
7854
+#: ../data/Locations.xml.in.h:1192
 
7855
+msgid "Cairns"
 
7856
+msgstr ""
 
7857
+
 
7858
+#. A city in Venezuela
 
7859
+#: ../data/Locations.xml.in.h:1194
 
7860
+msgid "Calabozo"
 
7861
+msgstr ""
 
7862
+
 
7863
+#. A city in Nova Scotia in Canada
 
7864
+#: ../data/Locations.xml.in.h:1196
 
7865
+msgid "Caledonia"
 
7866
+msgstr ""
 
7867
+
 
7868
+#. A city in Alberta in Canada
 
7869
+#: ../data/Locations.xml.in.h:1198
 
7870
+msgid "Calgary"
 
7871
+msgstr ""
 
7872
+
 
7873
+#. A city in Colombia
 
7874
+#: ../data/Locations.xml.in.h:1200
 
7875
+msgid "Cali"
 
7876
+msgstr ""
 
7877
+
 
7878
+#. A state/province/territory in United States
 
7879
+#: ../data/Locations.xml.in.h:1202
 
7880
+msgid "California"
 
7881
+msgstr ""
 
7882
+
 
7883
+#. A city in France
 
7884
+#: ../data/Locations.xml.in.h:1204
 
7885
+msgid "Calvi"
 
7886
+msgstr ""
 
7887
+
 
7888
+#. A city in Aruba
 
7889
+#: ../data/Locations.xml.in.h:1206
 
7890
+msgid "Camacuri"
 
7891
+msgstr ""
 
7892
+
 
7893
+#. A city in Cuba
 
7894
+#: ../data/Locations.xml.in.h:1208
 
7895
+msgid "Camagüey"
 
7896
+msgstr ""
 
7897
+
 
7898
+#. A city in California in the United States
 
7899
+#: ../data/Locations.xml.in.h:1210
 
7900
+msgid "Camarillo"
 
7901
+msgstr ""
 
7902
+
 
7903
+#. KH - Cambodia
 
7904
+#: ../data/Locations.xml.in.h:1212
 
7905
+msgid "Cambodia"
 
7906
+msgstr ""
 
7907
+
 
7908
+#. A city in France
 
7909
+#: ../data/Locations.xml.in.h:1214
 
7910
+msgid "Cambrai"
 
7911
+msgstr ""
 
7912
+
 
7913
+#. A city in Nunavut in Canada
 
7914
+#: ../data/Locations.xml.in.h:1216
 
7915
+msgid "Cambridge Bay"
 
7916
+msgstr ""
 
7917
+
 
7918
+#. A city in Arkansas in the United States
 
7919
+#: ../data/Locations.xml.in.h:1218
 
7920
+msgid "Camden"
 
7921
+msgstr ""
 
7922
+
 
7923
+#. CM - Cameroon
 
7924
+#: ../data/Locations.xml.in.h:1220
 
7925
+msgid "Cameroon"
 
7926
+msgstr ""
 
7927
+
 
7928
+#. A city in Bolivia
 
7929
+#: ../data/Locations.xml.in.h:1222
 
7930
+msgid "Camiri"
 
7931
+msgstr ""
 
7932
+
 
7933
+#. A city in Wisconsin in the United States
 
7934
+#: ../data/Locations.xml.in.h:1224
 
7935
+msgid "Camp Douglas"
 
7936
+msgstr ""
 
7937
+
 
7938
+#. A city in Maryland in the United States
 
7939
+#: ../data/Locations.xml.in.h:1226
 
7940
+msgid "Camp Springs"
 
7941
+msgstr ""
 
7942
+
 
7943
+#. A city in British Columbia in Canada
 
7944
+#: ../data/Locations.xml.in.h:1228
 
7945
+msgid "Campbell River"
 
7946
+msgstr ""
 
7947
+
 
7948
+#. A city in Scotland in the United Kingdom
 
7949
+#: ../data/Locations.xml.in.h:1230
 
7950
+msgid "Campbeltown"
 
7951
+msgstr ""
 
7952
+
 
7953
+#. A city in Paraíba in Brazil
 
7954
+#: ../data/Locations.xml.in.h:1232
 
7955
+msgid "Campina Grande"
 
7956
+msgstr ""
 
7957
+
 
7958
+#. A city in São Paulo in Brazil
 
7959
+#: ../data/Locations.xml.in.h:1234
 
7960
+msgid "Campinas"
 
7961
+msgstr ""
 
7962
+
 
7963
+#. A city in California in the United States
 
7964
+#: ../data/Locations.xml.in.h:1236
 
7965
+msgid "Campo"
 
7966
+msgstr ""
 
7967
+
 
7968
+#. A city in Mato Grosso do Sul in Brazil
 
7969
+#: ../data/Locations.xml.in.h:1238
 
7970
+msgid "Campo Grande"
 
7971
+msgstr ""
 
7972
+
 
7973
+#. A city in Rio de Janeiro in Brazil
 
7974
+#: ../data/Locations.xml.in.h:1240
 
7975
+msgid "Campos"
 
7976
+msgstr ""
 
7977
+
 
7978
+#. CA - Canada
 
7979
+#: ../data/Locations.xml.in.h:1242
 
7980
+msgid "Canada"
 
7981
+msgstr ""
 
7982
+
 
7983
+#. A city in Texas in the United States
 
7984
+#: ../data/Locations.xml.in.h:1244
 
7985
+msgid "Canadian"
 
7986
+msgstr ""
 
7987
+
 
7988
+#. This refers to the time zone for the Canary Islands. The
 
7989
+#. string is only used in places where "Spain" is already
 
7990
+#. clear from context.
 
7991
+#.
 
7992
+#: ../data/Locations.xml.in.h:1249
 
7993
+msgid "Canary Islands"
 
7994
+msgstr ""
 
7995
+
 
7996
+#. The capital of Australia
 
7997
+#: ../data/Locations.xml.in.h:1251
 
7998
+msgid "Canberra"
 
7999
+msgstr ""
 
8000
+
 
8001
+#. A city in Quintana Roo in Mexico
 
8002
+#: ../data/Locations.xml.in.h:1253
 
8003
+msgid "Cancún"
 
8004
+msgstr ""
 
8005
+
 
8006
+#. A city in France
 
8007
+#: ../data/Locations.xml.in.h:1255
 
8008
+msgid "Cannes"
 
8009
+msgstr ""
 
8010
+
 
8011
+#. A city in Nova Scotia in Canada
 
8012
+#: ../data/Locations.xml.in.h:1257
 
8013
+msgid "Canso"
 
8014
+msgstr ""
 
8015
+
 
8016
+#. A city in Georgia in the United States
 
8017
+#: ../data/Locations.xml.in.h:1259
 
8018
+msgid "Canton"
 
8019
+msgstr ""
 
8020
+
 
8021
+#. A city in Quebec in Canada
 
8022
+#: ../data/Locations.xml.in.h:1261
 
8023
+msgid "Canton-Bégin"
 
8024
+msgstr ""
 
8025
+
 
8026
+#. A city in Quebec in Canada
 
8027
+#: ../data/Locations.xml.in.h:1263
 
8028
+msgid "Cap-Chat"
 
8029
+msgstr ""
 
8030
+
 
8031
+#. A city in Quebec in Canada
 
8032
+#: ../data/Locations.xml.in.h:1265
 
8033
+msgid "Cap-aux-Meules"
 
8034
+msgstr ""
 
8035
+
 
8036
+#. A city in Florida in the United States
 
8037
+#: ../data/Locations.xml.in.h:1267
 
8038
+msgid "Cape Canaveral"
 
8039
+msgstr ""
 
8040
+
 
8041
+#. A city in Florida in the United States
 
8042
+#: ../data/Locations.xml.in.h:1269
 
8043
+msgid "Cape Coral"
 
8044
+msgstr ""
 
8045
+
 
8046
+#. A city in Quebec in Canada
 
8047
+#: ../data/Locations.xml.in.h:1271
 
8048
+msgid "Cape Cove"
 
8049
+msgstr ""
 
8050
+
 
8051
+#. A city in Nunavut in Canada
 
8052
+#: ../data/Locations.xml.in.h:1273
 
8053
+msgid "Cape Dorset"
 
8054
+msgstr ""
 
8055
+
 
8056
+#. A city in Nunavut in Canada
 
8057
+#: ../data/Locations.xml.in.h:1275
 
8058
+msgid "Cape Dyer"
 
8059
+msgstr ""
 
8060
+
 
8061
+#. A city in Missouri in the United States
 
8062
+#: ../data/Locations.xml.in.h:1277
 
8063
+msgid "Cape Girardeau"
 
8064
+msgstr ""
 
8065
+
 
8066
+#. A city in Northwest Territories in Canada
 
8067
+#: ../data/Locations.xml.in.h:1279
 
8068
+msgid "Cape Parry"
 
8069
+msgstr ""
 
8070
+
 
8071
+#. A city in Newfoundland and Labrador in Canada
 
8072
+#: ../data/Locations.xml.in.h:1281
 
8073
+msgid "Cape Race"
 
8074
+msgstr ""
 
8075
+
 
8076
+#. A city in South Africa
 
8077
+#: ../data/Locations.xml.in.h:1283
 
8078
+msgid "Cape Town"
 
8079
+msgstr ""
 
8080
+
 
8081
+#. CV - Cape Verde
 
8082
+#: ../data/Locations.xml.in.h:1285
 
8083
+msgid "Cape Verde"
 
8084
+msgstr ""
 
8085
+
 
8086
+#. A city in Italy
 
8087
+#: ../data/Locations.xml.in.h:1287
 
8088
+msgid "Capri"
 
8089
+msgstr ""
 
8090
+
 
8091
+#. The capital of Venezuela
 
8092
+#: ../data/Locations.xml.in.h:1289
 
8093
+msgid "Caracas"
 
8094
+msgstr ""
 
8095
+
 
8096
+#. A city in Illinois in the United States
 
8097
+#: ../data/Locations.xml.in.h:1291
 
8098
+msgid "Carbondale"
 
8099
+msgstr ""
 
8100
+
 
8101
+#. A city in France
 
8102
+#: ../data/Locations.xml.in.h:1293
 
8103
+msgid "Carcassonne"
 
8104
+msgstr ""
 
8105
+
 
8106
+#. A city in Alberta in Canada
 
8107
+#: ../data/Locations.xml.in.h:1295
 
8108
+msgid "Cardston"
 
8109
+msgstr ""
 
8110
+
 
8111
+#. A city in Maine in the United States
 
8112
+#: ../data/Locations.xml.in.h:1297
 
8113
+msgid "Caribou"
 
8114
+msgstr ""
 
8115
+
 
8116
+#. A city in Nova Scotia in Canada
 
8117
+#: ../data/Locations.xml.in.h:1299
 
8118
+msgid "Caribou Island"
 
8119
+msgstr ""
 
8120
+
 
8121
+#. A city in North West England in the United Kingdom
 
8122
+#: ../data/Locations.xml.in.h:1301
 
8123
+msgid "Carlisle"
 
8124
+msgstr ""
 
8125
+
 
8126
+#. A city in Yukon Territory in Canada
 
8127
+#: ../data/Locations.xml.in.h:1303
 
8128
+msgid "Carmacks"
 
8129
+msgstr ""
 
8130
+
 
8131
+#. A city in Manitoba in Canada
 
8132
+#: ../data/Locations.xml.in.h:1305
 
8133
+msgid "Carman"
 
8134
+msgstr ""
 
8135
+
 
8136
+#. A city in Campeche in Mexico
 
8137
+#: ../data/Locations.xml.in.h:1307
 
8138
+msgid "Carmen"
 
8139
+msgstr ""
 
8140
+
 
8141
+#. A city in Illinois in the United States
 
8142
+#: ../data/Locations.xml.in.h:1309
 
8143
+msgid "Carmi"
 
8144
+msgstr ""
 
8145
+
 
8146
+#. A city in Michigan in the United States
 
8147
+#: ../data/Locations.xml.in.h:1311
 
8148
+msgid "Caro"
 
8149
+msgstr ""
 
8150
+
 
8151
+#. A city in Puerto Rico
 
8152
+#: ../data/Locations.xml.in.h:1313
 
8153
+msgid "Carolina"
 
8154
+msgstr ""
 
8155
+
 
8156
+#. A city in Uruguay
 
8157
+#: ../data/Locations.xml.in.h:1315
 
8158
+msgid "Carrasco"
 
8159
+msgstr ""
 
8160
+
 
8161
+#. A city in Iowa in the United States
 
8162
+#: ../data/Locations.xml.in.h:1317
 
8163
+msgid "Carroll"
 
8164
+msgstr ""
 
8165
+
 
8166
+#. A city in Texas in the United States
 
8167
+#: ../data/Locations.xml.in.h:1319
 
8168
+msgid "Carrollton"
 
8169
+msgstr ""
 
8170
+
 
8171
+#. A city in Colombia
 
8172
+#: ../data/Locations.xml.in.h:1321
 
8173
+msgid "Cartagena"
 
8174
+msgstr ""
 
8175
+
 
8176
+#. A city in Georgia in the United States
 
8177
+#: ../data/Locations.xml.in.h:1323
 
8178
+msgid "Cartersville"
 
8179
+msgstr ""
 
8180
+
 
8181
+#. A city in Newfoundland and Labrador in Canada
 
8182
+#: ../data/Locations.xml.in.h:1325
 
8183
+msgid "Cartwright"
 
8184
+msgstr ""
 
8185
+
 
8186
+#. A city in Arizona in the United States
 
8187
+#: ../data/Locations.xml.in.h:1327
 
8188
+msgid "Casa Grande"
 
8189
+msgstr ""
 
8190
+
 
8191
+#. A city in the Seychelles
 
8192
+#: ../data/Locations.xml.in.h:1329
 
8193
+msgid "Cascade"
 
8194
+msgstr ""
 
8195
+
 
8196
+#. A city in Italy
 
8197
+#: ../data/Locations.xml.in.h:1331
 
8198
+msgid "Case Arfel"
 
8199
+msgstr ""
 
8200
+
 
8201
+#. An Australian research station in Antarctica, which
 
8202
+#. keeps the same time as Western Australia. The string is
 
8203
+#. only used in places where "Antarctica" is already clear
 
8204
+#. from context.
 
8205
+#.
 
8206
+#: ../data/Locations.xml.in.h:1337
 
8207
+msgid "Casey Station (Western Australia Time)"
 
8208
+msgstr ""
 
8209
+
 
8210
+#. A city in Wyoming in the United States
 
8211
+#: ../data/Locations.xml.in.h:1339
 
8212
+msgid "Casper"
 
8213
+msgstr ""
 
8214
+
 
8215
+#. A city in Portugal
 
8216
+#: ../data/Locations.xml.in.h:1341
 
8217
+msgid "Castelo Branco"
 
8218
+msgstr ""
 
8219
+
 
8220
+#. A city in Midlands in the United Kingdom
 
8221
+#: ../data/Locations.xml.in.h:1343
 
8222
+msgid "Castle Donington"
 
8223
+msgstr ""
 
8224
+
 
8225
+#. A city in British Columbia in Canada
 
8226
+#: ../data/Locations.xml.in.h:1345
 
8227
+msgid "Castlegar"
 
8228
+msgstr ""
 
8229
+
 
8230
+#. The capital of Saint Lucia
 
8231
+#: ../data/Locations.xml.in.h:1347
 
8232
+msgid "Castries"
 
8233
+msgstr ""
 
8234
+
 
8235
+#. A city in Honduras
 
8236
+#: ../data/Locations.xml.in.h:1349
 
8237
+msgid "Catacamas"
 
8238
+msgstr ""
 
8239
+
 
8240
+#. A city in Italy
 
8241
+#: ../data/Locations.xml.in.h:1351
 
8242
+msgid "Catania"
 
8243
+msgstr ""
 
8244
+
 
8245
+#. The capital of French Guiana
 
8246
+#: ../data/Locations.xml.in.h:1353
 
8247
+msgid "Cayenne"
 
8248
+msgstr ""
 
8249
+
 
8250
+#. KY - Cayman Islands, a British territory in the Caribbean
 
8251
+#: ../data/Locations.xml.in.h:1355
 
8252
+msgid "Cayman Islands"
 
8253
+msgstr ""
 
8254
+
 
8255
+#. A city in France
 
8256
+#: ../data/Locations.xml.in.h:1357
 
8257
+msgid "Cazaux"
 
8258
+msgstr ""
 
8259
+
 
8260
+#. A state/province/territory in Brazil
 
8261
+#: ../data/Locations.xml.in.h:1359
 
8262
+msgid "Ceará"
 
8263
+msgstr ""
 
8264
+
 
8265
+#. This represents the time zone in the Brazilian states of
 
8266
+#. Ceará, Maranhão, Paraíba, Piauí, and Rio Grande do
 
8267
+#. Norte. See the comment on "Brasília Time" for more
 
8268
+#. details. This string is only used in places where
 
8269
+#. "Brazil" is already clear from context.
 
8270
+#.
 
8271
+#: ../data/Locations.xml.in.h:1366
 
8272
+msgid "Ceará, Maranhão, Paraíba, Piauí, Rio Grande do Norte"
 
8273
+msgstr ""
 
8274
+
 
8275
+#. A city in Utah in the United States
 
8276
+#: ../data/Locations.xml.in.h:1368
 
8277
+msgid "Cedar City"
 
8278
+msgstr ""
 
8279
+
 
8280
+#. A city in Iowa in the United States
 
8281
+#: ../data/Locations.xml.in.h:1370
 
8282
+msgid "Cedar Rapids"
 
8283
+msgstr ""
 
8284
+
 
8285
+#. A city in Lower Saxony in Germany
 
8286
+#: ../data/Locations.xml.in.h:1372
 
8287
+msgid "Celle"
 
8288
+msgstr ""
 
8289
+
 
8290
+#. CF - Central African Republic
 
8291
+#: ../data/Locations.xml.in.h:1374
 
8292
+msgid "Central African Republic"
 
8293
+msgstr ""
 
8294
+
 
8295
+#. The timezone on the central islands of Indonesia. The
 
8296
+#. name in Indonesian is "Waktu Indonesia Bagian Tengah".
 
8297
+#.
 
8298
+#: ../data/Locations.xml.in.h:1378
 
8299
+msgid "Central Indonesia Time"
 
8300
+msgstr ""
 
8301
+
 
8302
+#. The time zone used in the central part of Mongolia.
 
8303
+#. FIXME: Is there an official name for this zone?
 
8304
+#.
 
8305
+#: ../data/Locations.xml.in.h:1382
 
8306
+msgid "Central Mongolia"
 
8307
+msgstr ""
 
8308
+
 
8309
+#. A city in Ontario in Canada
 
8310
+#: ../data/Locations.xml.in.h:1384
 
8311
+msgid "Central Patricia"
 
8312
+msgstr ""
 
8313
+
 
8314
+#. The time zone used in the central-east part of North
 
8315
+#. America. In Mexico it is called "Tiempo del Centro", and
 
8316
+#. in French-speaking parts of Canada it is called "Heure
 
8317
+#. du Centre". The string is only used in places where
 
8318
+#. "US", "Canada" or "Mexico" is already clear from the
 
8319
+#. context.
 
8320
+#.
 
8321
+#: ../data/Locations.xml.in.h:1392
 
8322
+msgid "Central Time"
 
8323
+msgstr ""
 
8324
+
 
8325
+#. The time zone used in Central Australia. This string is
 
8326
+#. specifically for the time zone as implemented in the
 
8327
+#. Northern Territory, which does not use Summer Time. This
 
8328
+#. string is only used in places where "Australia" is
 
8329
+#. already clear from context.
 
8330
+#.
 
8331
+#: ../data/Locations.xml.in.h:1399
 
8332
+msgid "Central Time (Northern Territory)"
 
8333
+msgstr ""
 
8334
+
 
8335
+#. The time zone used in Central Australia. This string is
 
8336
+#. specifically for the time zone as implemented in the
 
8337
+#. state of South Australia, and is only used in places
 
8338
+#. where "Australia" is already clear from context.
 
8339
+#.
 
8340
+#: ../data/Locations.xml.in.h:1405
 
8341
+msgid "Central Time (South Australia)"
 
8342
+msgstr ""
 
8343
+
 
8344
+#. The time zone used in Central Australia. This string is
 
8345
+#. specifically for the time zone as implemented in
 
8346
+#. Yancowinna county in the state of New South Wales (NSW),
 
8347
+#. which uses Central Time even though the rest of the
 
8348
+#. state uses Eastern Time. This string is only used in
 
8349
+#. places where "Australia" is already clear from context.
 
8350
+#.
 
8351
+#: ../data/Locations.xml.in.h:1413
 
8352
+msgid "Central Time (Yancowinna, NSW)"
 
8353
+msgstr ""
 
8354
+
 
8355
+#. This represents the time zone in the Canadian province
 
8356
+#. of Saskatchewan, which is part of the "Central Time"
 
8357
+#. zone, but does not observe Daylight Saving Time with the
 
8358
+#. rest of the zone.
 
8359
+#.
 
8360
+#: ../data/Locations.xml.in.h:1419
 
8361
+msgid "Central Time, no DST (Saskatchewan)"
 
8362
+msgstr ""
 
8363
+
 
8364
+#. The commonly-used name for an unofficial time zone used
 
8365
+#. in part of southwestern Australia. The string is only
 
8366
+#. used in places where "Australia" is already clear from
 
8367
+#. context.
 
8368
+#.
 
8369
+#: ../data/Locations.xml.in.h:1425
 
8370
+msgid "Central Western Time"
 
8371
+msgstr ""
 
8372
+
 
8373
+#: ../data/Locations.xml.in.h:1426
 
8374
+msgid "Central and South America"
 
8375
+msgstr ""
 
8376
+
 
8377
+#. A city in Illinois in the United States
 
8378
+#: ../data/Locations.xml.in.h:1428
 
8379
+msgid "Centralia"
 
8380
+msgstr ""
 
8381
+
 
8382
+#. A city in Italy
 
8383
+#: ../data/Locations.xml.in.h:1430
 
8384
+msgid "Cervia"
 
8385
+msgstr ""
 
8386
+
 
8387
+#. The time zone for the Spanish cities of Ceuta and
 
8388
+#. Melilla, on the coast of Africa. The string is only used
 
8389
+#. in places where "Spain" is already clear from context.
 
8390
+#.
 
8391
+#: ../data/Locations.xml.in.h:1435
 
8392
+msgid "Ceuta and Melilla"
 
8393
+msgstr ""
 
8394
+
 
8395
+#. A city in South Korea
 
8396
+#: ../data/Locations.xml.in.h:1437
 
8397
+msgid "Ch'ongju"
 
8398
+msgstr ""
 
8399
+
 
8400
+#. TD - Chad
 
8401
+#: ../data/Locations.xml.in.h:1439
 
8402
+msgid "Chad"
 
8403
+msgstr ""
 
8404
+
 
8405
+#. A city in Nebraska in the United States
 
8406
+#: ../data/Locations.xml.in.h:1441
 
8407
+msgid "Chadron"
 
8408
+msgstr ""
 
8409
+
 
8410
+#. A city in Ukraine
 
8411
+#: ../data/Locations.xml.in.h:1443
 
8412
+msgid "Chagor"
 
8413
+msgstr ""
 
8414
+
 
8415
+#. A city in Iran.
 
8416
+#. The name is also written "چاه بهار".
 
8417
+#.
 
8418
+#: ../data/Locations.xml.in.h:1447
 
8419
+msgid "Chah Bahar"
 
8420
+msgstr ""
 
8421
+
 
8422
+#. A city in the Northern Mariana Islands
 
8423
+#: ../data/Locations.xml.in.h:1449
 
8424
+msgid "Chalan Kanoa"
 
8425
+msgstr ""
 
8426
+
 
8427
+#. A city in Idaho in the United States
 
8428
+#: ../data/Locations.xml.in.h:1451
 
8429
+msgid "Challis"
 
8430
+msgstr ""
 
8431
+
 
8432
+#. A city in New Mexico in the United States
 
8433
+#: ../data/Locations.xml.in.h:1453
 
8434
+msgid "Chama"
 
8435
+msgstr ""
 
8436
+
 
8437
+#. A city in South Dakota in the United States
 
8438
+#: ../data/Locations.xml.in.h:1455
 
8439
+msgid "Chamberlain"
 
8440
+msgstr ""
 
8441
+
 
8442
+#. A city in France
 
8443
+#: ../data/Locations.xml.in.h:1457
 
8444
+msgid "Chambéry"
 
8445
+msgstr ""
 
8446
+
 
8447
+#. A city in Illinois in the United States
 
8448
+#: ../data/Locations.xml.in.h:1459
 
8449
+msgid "Champaign"
 
8450
+msgstr ""
 
8451
+
 
8452
+#. A city in Alaska in the United States
 
8453
+#: ../data/Locations.xml.in.h:1461
 
8454
+msgid "Chandalar"
 
8455
+msgstr ""
 
8456
+
 
8457
+#. A union territory in India.
 
8458
+#. The local name in Hindi is "चण्डीगढ़ / चंडीगढ़"
 
8459
+#. The local name in Punjabi is "ਚੰਡੀਗੜ੍ਹ"
 
8460
+#: ../data/Locations.xml.in.h:1465
 
8461
+msgid "Chandigarh"
 
8462
+msgstr ""
 
8463
+
 
8464
+#. A city in Jilin in China.
 
8465
+#. The name is also written "长春".
 
8466
+#.
 
8467
+#: ../data/Locations.xml.in.h:1469
 
8468
+msgid "Changchun"
 
8469
+msgstr ""
 
8470
+
 
8471
+#. A city in Hunan in China.
 
8472
+#. The name is also written "长沙".
 
8473
+#.
 
8474
+#: ../data/Locations.xml.in.h:1473
 
8475
+msgid "Changsha"
 
8476
+msgstr ""
 
8477
+
 
8478
+#. A city in Kansas in the United States
 
8479
+#: ../data/Locations.xml.in.h:1475
 
8480
+msgid "Chanute"
 
8481
+msgstr ""
 
8482
+
 
8483
+#. A city in North Carolina in the United States
 
8484
+#: ../data/Locations.xml.in.h:1477
 
8485
+msgid "Chapel Hill"
 
8486
+msgstr ""
 
8487
+
 
8488
+#. A city in Ontario in Canada
 
8489
+#: ../data/Locations.xml.in.h:1479
 
8490
+msgid "Chapleau"
 
8491
+msgstr ""
 
8492
+
 
8493
+#. A city in Iowa in the United States
 
8494
+#: ../data/Locations.xml.in.h:1481
 
8495
+msgid "Chariton"
 
8496
+msgstr ""
 
8497
+
 
8498
+#. A city in Iowa in the United States
 
8499
+#: ../data/Locations.xml.in.h:1483
 
8500
+msgid "Charles City"
 
8501
+msgstr ""
 
8502
+
 
8503
+#. A city in Michigan in the United States
 
8504
+#: ../data/Locations.xml.in.h:1485
 
8505
+msgid "Charlevoix"
 
8506
+msgstr ""
 
8507
+
 
8508
+#. A city in the United States Virgin Islands
 
8509
+#: ../data/Locations.xml.in.h:1487
 
8510
+msgid "Charlotte Amalie"
 
8511
+msgstr ""
 
8512
+
 
8513
+#. A city in Virginia in the United States
 
8514
+#: ../data/Locations.xml.in.h:1489
 
8515
+msgid "Charlottesville"
 
8516
+msgstr ""
 
8517
+
 
8518
+#. A city in Prince Edward Island in Canada
 
8519
+#: ../data/Locations.xml.in.h:1491
 
8520
+msgid "Charlottetown"
 
8521
+msgstr ""
 
8522
+
 
8523
+#. A city in France
 
8524
+#: ../data/Locations.xml.in.h:1493
 
8525
+msgid "Chartres"
 
8526
+msgstr ""
 
8527
+
 
8528
+#. A city in Massachusetts in the United States
 
8529
+#: ../data/Locations.xml.in.h:1495
 
8530
+msgid "Chatham"
 
8531
+msgstr ""
 
8532
+
 
8533
+#. This refers to the time zone in the Chatham Islands of
 
8534
+#. New Zealand.
 
8535
+#.
 
8536
+#: ../data/Locations.xml.in.h:1499
 
8537
+msgid "Chatham Islands"
 
8538
+msgstr ""
 
8539
+
 
8540
+#. A city in Tennessee in the United States
 
8541
+#: ../data/Locations.xml.in.h:1501
 
8542
+msgid "Chattanooga"
 
8543
+msgstr ""
 
8544
+
 
8545
+#. A city in Michigan in the United States
 
8546
+#: ../data/Locations.xml.in.h:1503
 
8547
+msgid "Cheboygan"
 
8548
+msgstr ""
 
8549
+
 
8550
+#. A city in South Korea
 
8551
+#: ../data/Locations.xml.in.h:1505
 
8552
+msgid "Cheju"
 
8553
+msgstr ""
 
8554
+
 
8555
+#. A city in Russia.
 
8556
+#. The local name in Russian is "Челябинск".
 
8557
+#.
 
8558
+#: ../data/Locations.xml.in.h:1509
 
8559
+msgid "Chelyabinsk"
 
8560
+msgstr ""
 
8561
+
 
8562
+#. A city in Sichuan in China.
 
8563
+#. The name is also written "成都".
 
8564
+#.
 
8565
+#: ../data/Locations.xml.in.h:1513
 
8566
+msgid "Chengdu"
 
8567
+msgstr ""
 
8568
+
 
8569
+#. A city in India.
 
8570
+#. "Madras" is the traditional English name.
 
8571
+#. The local name in Tamil is "Chennai / சென்னை".
 
8572
+#.
 
8573
+#: ../data/Locations.xml.in.h:1518
 
8574
+msgid "Chennai"
 
8575
+msgstr ""
 
8576
+
 
8577
+#. A city in France
 
8578
+#: ../data/Locations.xml.in.h:1520
 
8579
+msgid "Cherbourg"
 
8580
+msgstr ""
 
8581
+
 
8582
+#. A city in Iowa in the United States
 
8583
+#: ../data/Locations.xml.in.h:1522
 
8584
+msgid "Cherokee"
 
8585
+msgstr ""
 
8586
+
 
8587
+#. A city in Virginia in the United States
 
8588
+#: ../data/Locations.xml.in.h:1524
 
8589
+msgid "Chesapeake"
 
8590
+msgstr ""
 
8591
+
 
8592
+#. A city in Missouri in the United States
 
8593
+#: ../data/Locations.xml.in.h:1526
 
8594
+msgid "Chesterfield"
 
8595
+msgstr ""
 
8596
+
 
8597
+#. A city in Nunavut in Canada
 
8598
+#: ../data/Locations.xml.in.h:1528
 
8599
+msgid "Chesterfield Inlet"
 
8600
+msgstr ""
 
8601
+
 
8602
+#. A city in Quintana Roo in Mexico
 
8603
+#: ../data/Locations.xml.in.h:1530
 
8604
+msgid "Chetumal"
 
8605
+msgstr ""
 
8606
+
 
8607
+#. A city in Wyoming in the United States
 
8608
+#: ../data/Locations.xml.in.h:1532
 
8609
+msgid "Cheyenne"
 
8610
+msgstr ""
 
8611
+
 
8612
+#. A city in Thailand
 
8613
+#: ../data/Locations.xml.in.h:1534
 
8614
+msgid "Chiang Mai"
 
8615
+msgstr ""
 
8616
+
 
8617
+#. A state/province/territory in Mexico
 
8618
+#: ../data/Locations.xml.in.h:1536
 
8619
+msgid "Chiapas"
 
8620
+msgstr ""
 
8621
+
 
8622
+#. A city in Quebec in Canada
 
8623
+#: ../data/Locations.xml.in.h:1538
 
8624
+msgid "Chibougamau"
 
8625
+msgstr ""
 
8626
+
 
8627
+#. A city in Illinois in the United States
 
8628
+#: ../data/Locations.xml.in.h:1540
 
8629
+msgid "Chicago"
 
8630
+msgstr ""
 
8631
+
 
8632
+#. A city in Yucatán in Mexico
 
8633
+#: ../data/Locations.xml.in.h:1542
 
8634
+msgid "Chichén-Itzá"
 
8635
+msgstr ""
 
8636
+
 
8637
+#. A city in Oklahoma in the United States
 
8638
+#: ../data/Locations.xml.in.h:1544
 
8639
+msgid "Chickasha"
 
8640
+msgstr ""
 
8641
+
 
8642
+#. A city in Peru
 
8643
+#: ../data/Locations.xml.in.h:1546
 
8644
+msgid "Chiclayo"
 
8645
+msgstr ""
 
8646
+
 
8647
+#. A city in California in the United States
 
8648
+#: ../data/Locations.xml.in.h:1548
 
8649
+msgid "Chico"
 
8650
+msgstr ""
 
8651
+
 
8652
+#. A city in Massachusetts in the United States
 
8653
+#: ../data/Locations.xml.in.h:1550
 
8654
+msgid "Chicopee Falls"
 
8655
+msgstr ""
 
8656
+
 
8657
+#. A city in Alaska in the United States
 
8658
+#: ../data/Locations.xml.in.h:1552
 
8659
+msgid "Chignik"
 
8660
+msgstr ""
 
8661
+
 
8662
+#. A city in Texas in the United States
 
8663
+#: ../data/Locations.xml.in.h:1554
 
8664
+msgid "Childress"
 
8665
+msgstr ""
 
8666
+
 
8667
+#. A city in Arizona in the United States
 
8668
+#: ../data/Locations.xml.in.h:1556
 
8669
+msgid "Childs"
 
8670
+msgstr ""
 
8671
+
 
8672
+#. CL - Chile
 
8673
+#: ../data/Locations.xml.in.h:1558
 
8674
+msgid "Chile"
 
8675
+msgstr ""
 
8676
+
 
8677
+#. A city in Missouri in the United States
 
8678
+#: ../data/Locations.xml.in.h:1560
 
8679
+msgid "Chillicothe"
 
8680
+msgstr ""
 
8681
+
 
8682
+#. A city in Mozambique
 
8683
+#: ../data/Locations.xml.in.h:1562
 
8684
+msgid "Chimoio"
 
8685
+msgstr ""
 
8686
+
 
8687
+#. CN - China. (The official ISO 3166 short English name does
 
8688
+#. not include "The People's Republic of".)
 
8689
+#.
 
8690
+#: ../data/Locations.xml.in.h:1566
 
8691
+msgid "China"
 
8692
+msgstr ""
 
8693
+
 
8694
+#. A city in California in the United States
 
8695
+#: ../data/Locations.xml.in.h:1568
 
8696
+msgid "China Lake"
 
8697
+msgstr ""
 
8698
+
 
8699
+#. A city in Nicaragua
 
8700
+#: ../data/Locations.xml.in.h:1570
 
8701
+msgid "Chinandega"
 
8702
+msgstr ""
 
8703
+
 
8704
+#. A city in Virginia in the United States
 
8705
+#: ../data/Locations.xml.in.h:1572
 
8706
+msgid "Chincoteague"
 
8707
+msgstr ""
 
8708
+
 
8709
+#. A city in Zambia
 
8710
+#: ../data/Locations.xml.in.h:1574
 
8711
+msgid "Chinganze"
 
8712
+msgstr ""
 
8713
+
 
8714
+#. A city in California in the United States
 
8715
+#: ../data/Locations.xml.in.h:1576
 
8716
+msgid "Chino"
 
8717
+msgstr ""
 
8718
+
 
8719
+#. A city in Alaska in the United States
 
8720
+#: ../data/Locations.xml.in.h:1578
 
8721
+msgid "Chisana"
 
8722
+msgstr ""
 
8723
+
 
8724
+#. A city in Alaska in the United States
 
8725
+#: ../data/Locations.xml.in.h:1580
 
8726
+msgid "Chistochina"
 
8727
+msgstr ""
 
8728
+
 
8729
+#. A city in Russia.
 
8730
+#. The local name in Russian is "Чита".
 
8731
+#.
 
8732
+#: ../data/Locations.xml.in.h:1584
 
8733
+msgid "Chita"
 
8734
+msgstr ""
 
8735
+
 
8736
+#. A city in Japan
 
8737
+#: ../data/Locations.xml.in.h:1586
 
8738
+msgid "Chitose"
 
8739
+msgstr ""
 
8740
+
 
8741
+#. A city in Bangladesh.
 
8742
+#. The local name in Bengali is "চট্টগ্রাম".
 
8743
+#.
 
8744
+#: ../data/Locations.xml.in.h:1590
 
8745
+msgid "Chittagong"
 
8746
+msgstr ""
 
8747
+
 
8748
+#. A city in Hainaut in Belgium
 
8749
+#: ../data/Locations.xml.in.h:1592
 
8750
+msgid "Chièvres"
 
8751
+msgstr ""
 
8752
+
 
8753
+#. The capital of Moldova
 
8754
+#: ../data/Locations.xml.in.h:1594
 
8755
+msgid "Chişinău"
 
8756
+msgstr ""
 
8757
+
 
8758
+#. A city in Algeria
 
8759
+#: ../data/Locations.xml.in.h:1596
 
8760
+msgid "Chlef"
 
8761
+msgstr ""
 
8762
+
 
8763
+#. A city in Japan
 
8764
+#: ../data/Locations.xml.in.h:1598
 
8765
+msgid "Chofu"
 
8766
+msgstr ""
 
8767
+
 
8768
+#. A city in Thailand
 
8769
+#: ../data/Locations.xml.in.h:1600
 
8770
+msgid "Chon Buri"
 
8771
+msgstr ""
 
8772
+
 
8773
+#. A city in New Zealand
 
8774
+#: ../data/Locations.xml.in.h:1602
 
8775
+msgid "Christchurch"
 
8776
+msgstr ""
 
8777
+
 
8778
+#. A city in the United States Virgin Islands
 
8779
+#: ../data/Locations.xml.in.h:1604
 
8780
+msgid "Christiansted"
 
8781
+msgstr ""
 
8782
+
 
8783
+#. CX - Christmas Island, a territory of Australia in the
 
8784
+#. Indian Ocean, not to be confused with various other islands
 
8785
+#. of the same name.
 
8786
+#.
 
8787
+#: ../data/Locations.xml.in.h:1609
 
8788
+msgid "Christmas Island"
 
8789
+msgstr ""
 
8790
+
 
8791
+#. A city in Greece
 
8792
+#: ../data/Locations.xml.in.h:1611
 
8793
+msgid "Chrysoúpolis"
 
8794
+msgstr ""
 
8795
+
 
8796
+#. A city in Russia.
 
8797
+#. The local name in Russian is "Чульман".
 
8798
+#.
 
8799
+#: ../data/Locations.xml.in.h:1615
 
8800
+msgid "Chul'man"
 
8801
+msgstr ""
 
8802
+
 
8803
+#. A city in California in the United States
 
8804
+#: ../data/Locations.xml.in.h:1617
 
8805
+msgid "Chula Vista"
 
8806
+msgstr ""
 
8807
+
 
8808
+#. A city in Alaska in the United States
 
8809
+#: ../data/Locations.xml.in.h:1619
 
8810
+msgid "Chulitna"
 
8811
+msgstr ""
 
8812
+
 
8813
+#. A city in North West England in the United Kingdom
 
8814
+#: ../data/Locations.xml.in.h:1621
 
8815
+msgid "Church Fenton"
 
8816
+msgstr ""
 
8817
+
 
8818
+#. A city in Manitoba in Canada
 
8819
+#: ../data/Locations.xml.in.h:1623
 
8820
+msgid "Churchill"
 
8821
+msgstr ""
 
8822
+
 
8823
+#. A city in France.
 
8824
+#. One of several cities in France called "Châlons".
 
8825
+#.
 
8826
+#: ../data/Locations.xml.in.h:1627
 
8827
+msgid "Châlons-en-Champagne"
 
8828
+msgstr ""
 
8829
+
 
8830
+#. A city in France
 
8831
+#: ../data/Locations.xml.in.h:1629
 
8832
+msgid "Châteaudun"
 
8833
+msgstr ""
 
8834
+
 
8835
+#. A city in France
 
8836
+#: ../data/Locations.xml.in.h:1631
 
8837
+msgid "Châteauroux"
 
8838
+msgstr ""
 
8839
+
 
8840
+#. A city in Nova Scotia in Canada
 
8841
+#: ../data/Locations.xml.in.h:1633
 
8842
+msgid "Chéticamp"
 
8843
+msgstr ""
 
8844
+
 
8845
+#. A city in Greece.
 
8846
+#. The name is also written "Χίος".
 
8847
+#.
 
8848
+#: ../data/Locations.xml.in.h:1637
 
8849
+msgid "Chíos"
 
8850
+msgstr ""
 
8851
+
 
8852
+#. A city in Cuba
 
8853
+#: ../data/Locations.xml.in.h:1639
 
8854
+msgid "Cienfuegos"
 
8855
+msgstr ""
 
8856
+
 
8857
+#. A city in Ohio in the United States
 
8858
+#: ../data/Locations.xml.in.h:1641
 
8859
+msgid "Cincinnati"
 
8860
+msgstr ""
 
8861
+
 
8862
+#. A city in Aguascalientes in Mexico
 
8863
+#: ../data/Locations.xml.in.h:1643
 
8864
+msgctxt "City in Aguascalientes, Mexico"
 
8865
+msgid "Aguascalientes"
 
8866
+msgstr ""
 
8867
+
 
8868
+#. A city in Alabama in the United States
 
8869
+#: ../data/Locations.xml.in.h:1645
 
8870
+msgctxt "City in Alabama, United States"
 
8871
+msgid "Auburn"
 
8872
+msgstr ""
 
8873
+
 
8874
+#. A city in Alabama in the United States
 
8875
+#: ../data/Locations.xml.in.h:1647
 
8876
+msgctxt "City in Alabama, United States"
 
8877
+msgid "Birmingham"
 
8878
+msgstr ""
 
8879
+
 
8880
+#. A city in Alabama in the United States
 
8881
+#: ../data/Locations.xml.in.h:1649
 
8882
+msgctxt "City in Alabama, United States"
 
8883
+msgid "Decatur"
 
8884
+msgstr ""
 
8885
+
 
8886
+#. A city in Alabama in the United States
 
8887
+#: ../data/Locations.xml.in.h:1651
 
8888
+msgctxt "City in Alabama, United States"
 
8889
+msgid "Huntsville"
 
8890
+msgstr ""
 
8891
+
 
8892
+#. A city in Alabama in the United States
 
8893
+#: ../data/Locations.xml.in.h:1653
 
8894
+msgctxt "City in Alabama, United States"
 
8895
+msgid "Montgomery"
 
8896
+msgstr ""
 
8897
+
 
8898
+#. A city in Alabama in the United States
 
8899
+#: ../data/Locations.xml.in.h:1655
 
8900
+msgctxt "City in Alabama, United States"
 
8901
+msgid "Troy"
 
8902
+msgstr ""
 
8903
+
 
8904
+#. A city in Alaska in the United States
 
8905
+#: ../data/Locations.xml.in.h:1657
 
8906
+msgctxt "City in Alaska, United States"
 
8907
+msgid "Alpine"
 
8908
+msgstr ""
 
8909
+
 
8910
+#. A city in Alaska in the United States
 
8911
+#: ../data/Locations.xml.in.h:1659
 
8912
+msgctxt "City in Alaska, United States"
 
8913
+msgid "Eagle"
 
8914
+msgstr ""
 
8915
+
 
8916
+#. A city in Alaska in the United States
 
8917
+#: ../data/Locations.xml.in.h:1661
 
8918
+msgctxt "City in Alaska, United States"
 
8919
+msgid "Juneau"
 
8920
+msgstr ""
 
8921
+
 
8922
+#. A city in Alaska in the United States
 
8923
+#: ../data/Locations.xml.in.h:1663
 
8924
+msgctxt "City in Alaska, United States"
 
8925
+msgid "Petersburg"
 
8926
+msgstr ""
 
8927
+
 
8928
+#. A city in Alaska in the United States
 
8929
+#: ../data/Locations.xml.in.h:1665
 
8930
+msgctxt "City in Alaska, United States"
 
8931
+msgid "Saint George"
 
8932
+msgstr ""
 
8933
+
 
8934
+#. A city in Alaska in the United States
 
8935
+#: ../data/Locations.xml.in.h:1667
 
8936
+msgctxt "City in Alaska, United States"
 
8937
+msgid "Sutton"
 
8938
+msgstr ""
 
8939
+
 
8940
+#. A city in Alberta in Canada
 
8941
+#: ../data/Locations.xml.in.h:1669
 
8942
+msgctxt "City in Alberta, Canada"
 
8943
+msgid "Jasper"
 
8944
+msgstr ""
 
8945
+
 
8946
+#. The capital of Antigua and Barbuda
 
8947
+#: ../data/Locations.xml.in.h:1671
 
8948
+msgctxt "City in Antigua and Barbuda"
 
8949
+msgid "Saint John's"
 
8950
+msgstr ""
 
8951
+
 
8952
+#. A city in Antwerp in Belgium.
 
8953
+#. "Antwerp" is the traditional English name.
 
8954
+#. The local name is "Antwerpen".
 
8955
+#.
 
8956
+#: ../data/Locations.xml.in.h:1676
 
8957
+msgctxt "City in Antwerp, Belgium"
 
8958
+msgid "Antwerp"
 
8959
+msgstr ""
 
8960
+
 
8961
+#. A city in Argentina
 
8962
+#: ../data/Locations.xml.in.h:1678
 
8963
+msgctxt "City in Argentina"
 
8964
+msgid "Córdoba"
 
8965
+msgstr ""
 
8966
+
 
8967
+#. A city in Argentina
 
8968
+#: ../data/Locations.xml.in.h:1680
 
8969
+msgctxt "City in Argentina"
 
8970
+msgid "San Fernando"
 
8971
+msgstr ""
 
8972
+
 
8973
+#. A city in Arizona in the United States
 
8974
+#: ../data/Locations.xml.in.h:1682
 
8975
+msgctxt "City in Arizona, United States"
 
8976
+msgid "Chandler"
 
8977
+msgstr ""
 
8978
+
 
8979
+#. A city in Arizona in the United States
 
8980
+#: ../data/Locations.xml.in.h:1684
 
8981
+msgctxt "City in Arizona, United States"
 
8982
+msgid "Douglas"
 
8983
+msgstr ""
 
8984
+
 
8985
+#. A city in Arizona in the United States
 
8986
+#: ../data/Locations.xml.in.h:1686
 
8987
+msgctxt "City in Arizona, United States"
 
8988
+msgid "Glendale"
 
8989
+msgstr ""
 
8990
+
 
8991
+#. A city in Arizona in the United States
 
8992
+#: ../data/Locations.xml.in.h:1688
 
8993
+msgctxt "City in Arizona, United States"
 
8994
+msgid "Peoria"
 
8995
+msgstr ""
 
8996
+
 
8997
+#. A city in Arkansas in the United States
 
8998
+#: ../data/Locations.xml.in.h:1690
 
8999
+msgctxt "City in Arkansas, United States"
 
9000
+msgid "Fayetteville"
 
9001
+msgstr ""
 
9002
+
 
9003
+#. A city in Arkansas in the United States
 
9004
+#: ../data/Locations.xml.in.h:1692
 
9005
+msgctxt "City in Arkansas, United States"
 
9006
+msgid "Fort Smith"
 
9007
+msgstr ""
 
9008
+
 
9009
+#. A city in Arkansas in the United States
 
9010
+#: ../data/Locations.xml.in.h:1694
 
9011
+msgctxt "City in Arkansas, United States"
 
9012
+msgid "Hot Springs"
 
9013
+msgstr ""
 
9014
+
 
9015
+#. A city in Arkansas in the United States
 
9016
+#: ../data/Locations.xml.in.h:1696
 
9017
+msgctxt "City in Arkansas, United States"
 
9018
+msgid "Monticello"
 
9019
+msgstr ""
 
9020
+
 
9021
+#. A city in Arkansas in the United States
 
9022
+#: ../data/Locations.xml.in.h:1698
 
9023
+msgctxt "City in Arkansas, United States"
 
9024
+msgid "Mountain Home"
 
9025
+msgstr ""
 
9026
+
 
9027
+#. A city in Arkansas in the United States
 
9028
+#: ../data/Locations.xml.in.h:1700
 
9029
+msgctxt "City in Arkansas, United States"
 
9030
+msgid "Newport"
 
9031
+msgstr ""
 
9032
+
 
9033
+#. A city in Arkansas in the United States
 
9034
+#: ../data/Locations.xml.in.h:1702
 
9035
+msgctxt "City in Arkansas, United States"
 
9036
+msgid "Stuttgart"
 
9037
+msgstr ""
 
9038
+
 
9039
+#. A city in Baden-Württemberg in Germany
 
9040
+#: ../data/Locations.xml.in.h:1704
 
9041
+msgctxt "City in Baden-Württemberg, Germany"
 
9042
+msgid "Stuttgart"
 
9043
+msgstr ""
 
9044
+
 
9045
+#. A city in the Bahamas
 
9046
+#: ../data/Locations.xml.in.h:1706
 
9047
+msgctxt "City in Bahamas"
 
9048
+msgid "Freeport"
 
9049
+msgstr ""
 
9050
+
 
9051
+#. A city in the Bahamas
 
9052
+#: ../data/Locations.xml.in.h:1708
 
9053
+msgctxt "City in Bahamas"
 
9054
+msgid "Georgetown"
 
9055
+msgstr ""
 
9056
+
 
9057
+#. A city in Baja California Sur in Mexico
 
9058
+#: ../data/Locations.xml.in.h:1710
 
9059
+msgctxt "City in Baja California Sur, Mexico"
 
9060
+msgid "La Paz"
 
9061
+msgstr ""
 
9062
+
 
9063
+#. The capital of China
 
9064
+#: ../data/Locations.xml.in.h:1712
 
9065
+msgctxt "City in Beijing, China"
 
9066
+msgid "Beijing"
 
9067
+msgstr ""
 
9068
+
 
9069
+#. A city in Belarus
 
9070
+#: ../data/Locations.xml.in.h:1714
 
9071
+msgctxt "City in Belarus"
 
9072
+msgid "Brest"
 
9073
+msgstr ""
 
9074
+
 
9075
+#. The capital of Germany
 
9076
+#: ../data/Locations.xml.in.h:1716
 
9077
+msgctxt "City in Berlin, Germany"
 
9078
+msgid "Berlin"
 
9079
+msgstr ""
 
9080
+
 
9081
+#. The capital of Bermuda
 
9082
+#: ../data/Locations.xml.in.h:1718
 
9083
+msgctxt "City in Bermuda"
 
9084
+msgid "Hamilton"
 
9085
+msgstr ""
 
9086
+
 
9087
+#. A city in Bermuda
 
9088
+#: ../data/Locations.xml.in.h:1720
 
9089
+msgctxt "City in Bermuda"
 
9090
+msgid "Saint George"
 
9091
+msgstr ""
 
9092
+
 
9093
+#. A city in Bolivia
 
9094
+#: ../data/Locations.xml.in.h:1722
 
9095
+msgctxt "City in Bolivia"
 
9096
+msgid "Concepción"
 
9097
+msgstr ""
 
9098
+
 
9099
+#. The capital of Bolivia
 
9100
+#: ../data/Locations.xml.in.h:1724
 
9101
+msgctxt "City in Bolivia"
 
9102
+msgid "La Paz"
 
9103
+msgstr ""
 
9104
+
 
9105
+#. A city in Bolivia
 
9106
+#: ../data/Locations.xml.in.h:1726
 
9107
+msgctxt "City in Bolivia"
 
9108
+msgid "Trinidad"
 
9109
+msgstr ""
 
9110
+
 
9111
+#. A city in Bremen in Germany
 
9112
+#: ../data/Locations.xml.in.h:1728
 
9113
+msgctxt "City in Bremen, Germany"
 
9114
+msgid "Bremen"
 
9115
+msgstr ""
 
9116
+
 
9117
+#. A city in British Columbia in Canada
 
9118
+#: ../data/Locations.xml.in.h:1730
 
9119
+msgctxt "City in British Columbia, Canada"
 
9120
+msgid "Clinton"
 
9121
+msgstr ""
 
9122
+
 
9123
+#. A city in British Columbia in Canada
 
9124
+#: ../data/Locations.xml.in.h:1732
 
9125
+msgctxt "City in British Columbia, Canada"
 
9126
+msgid "Creston"
 
9127
+msgstr ""
 
9128
+
 
9129
+#. A city in British Columbia in Canada
 
9130
+#: ../data/Locations.xml.in.h:1734
 
9131
+msgctxt "City in British Columbia, Canada"
 
9132
+msgid "Natal"
 
9133
+msgstr ""
 
9134
+
 
9135
+#. A city in British Columbia in Canada
 
9136
+#: ../data/Locations.xml.in.h:1736
 
9137
+msgctxt "City in British Columbia, Canada"
 
9138
+msgid "Princeton"
 
9139
+msgstr ""
 
9140
+
 
9141
+#. A city in British Columbia in Canada
 
9142
+#: ../data/Locations.xml.in.h:1738
 
9143
+msgctxt "City in British Columbia, Canada"
 
9144
+msgid "Vancouver"
 
9145
+msgstr ""
 
9146
+
 
9147
+#. A city in British Columbia in Canada
 
9148
+#: ../data/Locations.xml.in.h:1740
 
9149
+msgctxt "City in British Columbia, Canada"
 
9150
+msgid "Vernon"
 
9151
+msgstr ""
 
9152
+
 
9153
+#. A city in British Columbia in Canada
 
9154
+#: ../data/Locations.xml.in.h:1742
 
9155
+msgctxt "City in British Columbia, Canada"
 
9156
+msgid "Victoria"
 
9157
+msgstr ""
 
9158
+
 
9159
+#. A city in California in the United States
 
9160
+#: ../data/Locations.xml.in.h:1744
 
9161
+msgctxt "City in California, United States"
 
9162
+msgid "Auburn"
 
9163
+msgstr ""
 
9164
+
 
9165
+#. A city in California in the United States
 
9166
+#: ../data/Locations.xml.in.h:1746
 
9167
+msgctxt "City in California, United States"
 
9168
+msgid "Carlsbad"
 
9169
+msgstr ""
 
9170
+
 
9171
+#. A city in California in the United States
 
9172
+#: ../data/Locations.xml.in.h:1748
 
9173
+msgctxt "City in California, United States"
 
9174
+msgid "Concord"
 
9175
+msgstr ""
 
9176
+
 
9177
+#. A city in California in the United States
 
9178
+#: ../data/Locations.xml.in.h:1750
 
9179
+msgctxt "City in California, United States"
 
9180
+msgid "Corona"
 
9181
+msgstr ""
 
9182
+
 
9183
+#. A city in California in the United States
 
9184
+#: ../data/Locations.xml.in.h:1752
 
9185
+msgctxt "City in California, United States"
 
9186
+msgid "Fairfield"
 
9187
+msgstr ""
 
9188
+
 
9189
+#. A city in California in the United States
 
9190
+#: ../data/Locations.xml.in.h:1754
 
9191
+msgctxt "City in California, United States"
 
9192
+msgid "Fremont"
 
9193
+msgstr ""
 
9194
+
 
9195
+#. A city in California in the United States
 
9196
+#: ../data/Locations.xml.in.h:1756
 
9197
+msgctxt "City in California, United States"
 
9198
+msgid "Glendale"
 
9199
+msgstr ""
 
9200
+
 
9201
+#. A city in California in the United States
 
9202
+#: ../data/Locations.xml.in.h:1758
 
9203
+msgctxt "City in California, United States"
 
9204
+msgid "Hanford"
 
9205
+msgstr ""
 
9206
+
 
9207
+#. A city in California in the United States
 
9208
+#: ../data/Locations.xml.in.h:1760
 
9209
+msgctxt "City in California, United States"
 
9210
+msgid "Hayward"
 
9211
+msgstr ""
 
9212
+
 
9213
+#. A city in California in the United States
 
9214
+#: ../data/Locations.xml.in.h:1762
 
9215
+msgctxt "City in California, United States"
 
9216
+msgid "Imperial"
 
9217
+msgstr ""
 
9218
+
 
9219
+#. A city in California in the United States
 
9220
+#: ../data/Locations.xml.in.h:1764
 
9221
+msgctxt "City in California, United States"
 
9222
+msgid "Lancaster"
 
9223
+msgstr ""
 
9224
+
 
9225
+#. A city in California in the United States
 
9226
+#: ../data/Locations.xml.in.h:1766
 
9227
+msgctxt "City in California, United States"
 
9228
+msgid "Marysville"
 
9229
+msgstr ""
 
9230
+
 
9231
+#. A city in California in the United States
 
9232
+#: ../data/Locations.xml.in.h:1768
 
9233
+msgctxt "City in California, United States"
 
9234
+msgid "Ontario"
 
9235
+msgstr ""
 
9236
+
 
9237
+#. A city in California in the United States
 
9238
+#: ../data/Locations.xml.in.h:1770
 
9239
+msgctxt "City in California, United States"
 
9240
+msgid "Orange"
 
9241
+msgstr ""
 
9242
+
 
9243
+#. A city in California in the United States
 
9244
+#: ../data/Locations.xml.in.h:1772
 
9245
+msgctxt "City in California, United States"
 
9246
+msgid "Pasadena"
 
9247
+msgstr ""
 
9248
+
 
9249
+#. A city in California in the United States
 
9250
+#: ../data/Locations.xml.in.h:1774
 
9251
+msgctxt "City in California, United States"
 
9252
+msgid "Santa Clara"
 
9253
+msgstr ""
 
9254
+
 
9255
+#. A city in California in the United States
 
9256
+#: ../data/Locations.xml.in.h:1776
 
9257
+msgctxt "City in California, United States"
 
9258
+msgid "Santa Maria"
 
9259
+msgstr ""
 
9260
+
 
9261
+#. A city in California in the United States
 
9262
+#: ../data/Locations.xml.in.h:1778
 
9263
+msgctxt "City in California, United States"
 
9264
+msgid "Stockton"
 
9265
+msgstr ""
 
9266
+
 
9267
+#. A city in Campeche in Mexico
 
9268
+#: ../data/Locations.xml.in.h:1780
 
9269
+msgctxt "City in Campeche, Mexico"
 
9270
+msgid "Campeche"
 
9271
+msgstr ""
 
9272
+
 
9273
+#. The capital of the Cayman Islands
 
9274
+#: ../data/Locations.xml.in.h:1782
 
9275
+msgctxt "City in Cayman Islands"
 
9276
+msgid "George Town"
 
9277
+msgstr ""
 
9278
+
 
9279
+#. A city in Chihuahua in Mexico
 
9280
+#: ../data/Locations.xml.in.h:1784
 
9281
+msgctxt "City in Chihuahua, Mexico"
 
9282
+msgid "Chihuahua"
 
9283
+msgstr ""
 
9284
+
 
9285
+#. A city in Chile
 
9286
+#: ../data/Locations.xml.in.h:1786
 
9287
+msgctxt "City in Chile"
 
9288
+msgid "Concepción"
 
9289
+msgstr ""
 
9290
+
 
9291
+#. The capital of Chile
 
9292
+#: ../data/Locations.xml.in.h:1788
 
9293
+msgctxt "City in Chile"
 
9294
+msgid "Santiago"
 
9295
+msgstr ""
 
9296
+
 
9297
+#. A city in Chongqing in China.
 
9298
+#. The name is also written "重庆".
 
9299
+#.
 
9300
+#: ../data/Locations.xml.in.h:1792
 
9301
+msgctxt "City in Chongqing, China"
 
9302
+msgid "Chongqing"
 
9303
+msgstr ""
 
9304
+
 
9305
+#. A city in Colima in Mexico
 
9306
+#: ../data/Locations.xml.in.h:1794
 
9307
+msgctxt "City in Colima, Mexico"
 
9308
+msgid "Colima"
 
9309
+msgstr ""
 
9310
+
 
9311
+#. A city in Colima in Mexico
 
9312
+#: ../data/Locations.xml.in.h:1796
 
9313
+msgctxt "City in Colima, Mexico"
 
9314
+msgid "Manzanillo"
 
9315
+msgstr ""
 
9316
+
 
9317
+#. A city in Colorado in the United States
 
9318
+#: ../data/Locations.xml.in.h:1798
 
9319
+msgctxt "City in Colorado, United States"
 
9320
+msgid "Akron"
 
9321
+msgstr ""
 
9322
+
 
9323
+#. A city in Colorado in the United States
 
9324
+#: ../data/Locations.xml.in.h:1800
 
9325
+msgctxt "City in Colorado, United States"
 
9326
+msgid "Aurora"
 
9327
+msgstr ""
 
9328
+
 
9329
+#. A city in Colorado in the United States
 
9330
+#: ../data/Locations.xml.in.h:1802
 
9331
+msgctxt "City in Colorado, United States"
 
9332
+msgid "Burlington"
 
9333
+msgstr ""
 
9334
+
 
9335
+#. A city in Colorado in the United States
 
9336
+#: ../data/Locations.xml.in.h:1804
 
9337
+msgctxt "City in Colorado, United States"
 
9338
+msgid "Cardiff"
 
9339
+msgstr ""
 
9340
+
 
9341
+#. A city in Colorado in the United States
 
9342
+#: ../data/Locations.xml.in.h:1806
 
9343
+msgctxt "City in Colorado, United States"
 
9344
+msgid "Durango"
 
9345
+msgstr ""
 
9346
+
 
9347
+#. A city in Colorado in the United States
 
9348
+#: ../data/Locations.xml.in.h:1808
 
9349
+msgctxt "City in Colorado, United States"
 
9350
+msgid "Eagle"
 
9351
+msgstr ""
 
9352
+
 
9353
+#. A city in Colorado in the United States
 
9354
+#: ../data/Locations.xml.in.h:1810
 
9355
+msgctxt "City in Colorado, United States"
 
9356
+msgid "Springfield"
 
9357
+msgstr ""
 
9358
+
 
9359
+#. A city in Colorado in the United States
 
9360
+#: ../data/Locations.xml.in.h:1812
 
9361
+msgctxt "City in Colorado, United States"
 
9362
+msgid "Trinidad"
 
9363
+msgstr ""
 
9364
+
 
9365
+#. A city in Connecticut in the United States
 
9366
+#: ../data/Locations.xml.in.h:1814
 
9367
+msgctxt "City in Connecticut, United States"
 
9368
+msgid "Oxford"
 
9369
+msgstr ""
 
9370
+
 
9371
+#. A city in Costa Rica
 
9372
+#: ../data/Locations.xml.in.h:1816
 
9373
+msgctxt "City in Costa Rica"
 
9374
+msgid "Liberia"
 
9375
+msgstr ""
 
9376
+
 
9377
+#. A city in Cuba
 
9378
+#: ../data/Locations.xml.in.h:1818
 
9379
+msgctxt "City in Cuba"
 
9380
+msgid "Manzanillo"
 
9381
+msgstr ""
 
9382
+
 
9383
+#. A city in Delaware in the United States
 
9384
+#: ../data/Locations.xml.in.h:1820
 
9385
+msgctxt "City in Delaware, United States"
 
9386
+msgid "Georgetown"
 
9387
+msgstr ""
 
9388
+
 
9389
+#. A city in Delaware in the United States
 
9390
+#: ../data/Locations.xml.in.h:1822
 
9391
+msgctxt "City in Delaware, United States"
 
9392
+msgid "Wilmington"
 
9393
+msgstr ""
 
9394
+
 
9395
+#. The capital of the United States
 
9396
+#: ../data/Locations.xml.in.h:1824
 
9397
+msgctxt "City in District of Columbia, United States"
 
9398
+msgid "Washington"
 
9399
+msgstr ""
 
9400
+
 
9401
+#. The capital of Djibouti
 
9402
+#: ../data/Locations.xml.in.h:1826
 
9403
+msgctxt "City in Djibouti"
 
9404
+msgid "Djibouti"
 
9405
+msgstr ""
 
9406
+
 
9407
+#. The capital of Dominica
 
9408
+#: ../data/Locations.xml.in.h:1828
 
9409
+msgctxt "City in Dominica"
 
9410
+msgid "Roseau"
 
9411
+msgstr ""
 
9412
+
 
9413
+#. A city in the Dominican Republic
 
9414
+#: ../data/Locations.xml.in.h:1830
 
9415
+msgctxt "City in Dominican Republic"
 
9416
+msgid "Santiago"
 
9417
+msgstr ""
 
9418
+
 
9419
+#. A city in Durango in Mexico
 
9420
+#: ../data/Locations.xml.in.h:1832
 
9421
+msgctxt "City in Durango, Mexico"
 
9422
+msgid "Durango"
 
9423
+msgstr ""
 
9424
+
 
9425
+#. A city in East and South East England in the United
 
9426
+#. Kingdom
 
9427
+#.
 
9428
+#: ../data/Locations.xml.in.h:1836
 
9429
+msgctxt "City in East and South East England, United Kingdom"
 
9430
+msgid "Benson"
 
9431
+msgstr ""
 
9432
+
 
9433
+#. A city in East and South East England in the United
 
9434
+#. Kingdom
 
9435
+#.
 
9436
+#: ../data/Locations.xml.in.h:1840
 
9437
+msgctxt "City in East and South East England, United Kingdom"
 
9438
+msgid "Cambridge"
 
9439
+msgstr ""
 
9440
+
 
9441
+#. The capital of the United Kingdom
 
9442
+#: ../data/Locations.xml.in.h:1842
 
9443
+msgctxt "City in East and South East England, United Kingdom"
 
9444
+msgid "London"
 
9445
+msgstr ""
 
9446
+
 
9447
+#. A city in East and South East England in the United
 
9448
+#. Kingdom
 
9449
+#.
 
9450
+#: ../data/Locations.xml.in.h:1846
 
9451
+msgctxt "City in East and South East England, United Kingdom"
 
9452
+msgid "Southend"
 
9453
+msgstr ""
 
9454
+
 
9455
+#. A city in Egypt.
 
9456
+#. "Alexandria" is the traditional English name.
 
9457
+#. The local name in Arabic is "Al Iskandariyah".
 
9458
+#.
 
9459
+#: ../data/Locations.xml.in.h:1851
 
9460
+msgctxt "City in Egypt"
 
9461
+msgid "Alexandria"
 
9462
+msgstr ""
 
9463
+
 
9464
+#. The capital of Egypt.
 
9465
+#. "Cairo" is the traditional English name.
 
9466
+#. The local name in Arabic is "Al Qahirah".
 
9467
+#.
 
9468
+#: ../data/Locations.xml.in.h:1856
 
9469
+msgctxt "City in Egypt"
 
9470
+msgid "Cairo"
 
9471
+msgstr ""
 
9472
+
 
9473
+#. The capital of the Falkland Islands (Malvinas)
 
9474
+#: ../data/Locations.xml.in.h:1858
 
9475
+msgctxt "City in Falkland Islands (Malvinas)"
 
9476
+msgid "Stanley"
 
9477
+msgstr ""
 
9478
+
 
9479
+#. A city in Florida in the United States
 
9480
+#: ../data/Locations.xml.in.h:1860
 
9481
+msgctxt "City in Florida, United States"
 
9482
+msgid "Gainesville"
 
9483
+msgstr ""
 
9484
+
 
9485
+#. A city in Florida in the United States
 
9486
+#: ../data/Locations.xml.in.h:1862
 
9487
+msgctxt "City in Florida, United States"
 
9488
+msgid "Jacksonville"
 
9489
+msgstr ""
 
9490
+
 
9491
+#. A city in Florida in the United States
 
9492
+#: ../data/Locations.xml.in.h:1864
 
9493
+msgctxt "City in Florida, United States"
 
9494
+msgid "Leesburg"
 
9495
+msgstr ""
 
9496
+
 
9497
+#. A city in Florida in the United States
 
9498
+#: ../data/Locations.xml.in.h:1866
 
9499
+msgctxt "City in Florida, United States"
 
9500
+msgid "Melbourne"
 
9501
+msgstr ""
 
9502
+
 
9503
+#. A city in Florida in the United States
 
9504
+#: ../data/Locations.xml.in.h:1868
 
9505
+msgctxt "City in Florida, United States"
 
9506
+msgid "Miami"
 
9507
+msgstr ""
 
9508
+
 
9509
+#. A city in Florida in the United States
 
9510
+#: ../data/Locations.xml.in.h:1870
 
9511
+msgctxt "City in Florida, United States"
 
9512
+msgid "Naples"
 
9513
+msgstr ""
 
9514
+
 
9515
+#. A city in Florida in the United States
 
9516
+#: ../data/Locations.xml.in.h:1872
 
9517
+msgctxt "City in Florida, United States"
 
9518
+msgid "Springfield"
 
9519
+msgstr ""
 
9520
+
 
9521
+#. A city in Florida in the United States
 
9522
+#: ../data/Locations.xml.in.h:1874
 
9523
+msgctxt "City in Florida, United States"
 
9524
+msgid "Valparaiso"
 
9525
+msgstr ""
 
9526
+
 
9527
+#. A city in France
 
9528
+#: ../data/Locations.xml.in.h:1876
 
9529
+msgctxt "City in France"
 
9530
+msgid "Bordeaux"
 
9531
+msgstr ""
 
9532
+
 
9533
+#. A city in France
 
9534
+#: ../data/Locations.xml.in.h:1878
 
9535
+msgctxt "City in France"
 
9536
+msgid "Brest"
 
9537
+msgstr ""
 
9538
+
 
9539
+#. A city in France
 
9540
+#: ../data/Locations.xml.in.h:1880
 
9541
+msgctxt "City in France"
 
9542
+msgid "Orange"
 
9543
+msgstr ""
 
9544
+
 
9545
+#. The capital of France
 
9546
+#: ../data/Locations.xml.in.h:1882
 
9547
+msgctxt "City in France"
 
9548
+msgid "Paris"
 
9549
+msgstr ""
 
9550
+
 
9551
+#. A city in France
 
9552
+#: ../data/Locations.xml.in.h:1884
 
9553
+msgctxt "City in France"
 
9554
+msgid "Vichy"
 
9555
+msgstr ""
 
9556
+
 
9557
+#. A city in Georgia in the United States
 
9558
+#: ../data/Locations.xml.in.h:1886
 
9559
+msgctxt "City in Georgia, United States"
 
9560
+msgid "Albany"
 
9561
+msgstr ""
 
9562
+
 
9563
+#. A city in Georgia in the United States
 
9564
+#: ../data/Locations.xml.in.h:1888
 
9565
+msgctxt "City in Georgia, United States"
 
9566
+msgid "Alma"
 
9567
+msgstr ""
 
9568
+
 
9569
+#. A city in Georgia in the United States
 
9570
+#: ../data/Locations.xml.in.h:1890
 
9571
+msgctxt "City in Georgia, United States"
 
9572
+msgid "Athens"
 
9573
+msgstr ""
 
9574
+
 
9575
+#. A city in Georgia in the United States
 
9576
+#: ../data/Locations.xml.in.h:1892
 
9577
+msgctxt "City in Georgia, United States"
 
9578
+msgid "Augusta"
 
9579
+msgstr ""
 
9580
+
 
9581
+#. A city in Georgia in the United States
 
9582
+#: ../data/Locations.xml.in.h:1894
 
9583
+msgctxt "City in Georgia, United States"
 
9584
+msgid "Brunswick"
 
9585
+msgstr ""
 
9586
+
 
9587
+#. A city in Georgia in the United States
 
9588
+#: ../data/Locations.xml.in.h:1896
 
9589
+msgctxt "City in Georgia, United States"
 
9590
+msgid "Columbus"
 
9591
+msgstr ""
 
9592
+
 
9593
+#. A city in Georgia in the United States
 
9594
+#: ../data/Locations.xml.in.h:1898
 
9595
+msgctxt "City in Georgia, United States"
 
9596
+msgid "Douglas"
 
9597
+msgstr ""
 
9598
+
 
9599
+#. A city in Georgia in the United States
 
9600
+#: ../data/Locations.xml.in.h:1900
 
9601
+msgctxt "City in Georgia, United States"
 
9602
+msgid "Dublin"
 
9603
+msgstr ""
 
9604
+
 
9605
+#. A city in Georgia in the United States
 
9606
+#: ../data/Locations.xml.in.h:1902
 
9607
+msgctxt "City in Georgia, United States"
 
9608
+msgid "Gainesville"
 
9609
+msgstr ""
 
9610
+
 
9611
+#. A city in Georgia in the United States
 
9612
+#: ../data/Locations.xml.in.h:1904
 
9613
+msgctxt "City in Georgia, United States"
 
9614
+msgid "Greensboro"
 
9615
+msgstr ""
 
9616
+
 
9617
+#. A city in Georgia in the United States
 
9618
+#: ../data/Locations.xml.in.h:1906
 
9619
+msgctxt "City in Georgia, United States"
 
9620
+msgid "La Grange"
 
9621
+msgstr ""
 
9622
+
 
9623
+#. A city in Georgia in the United States
 
9624
+#: ../data/Locations.xml.in.h:1908
 
9625
+msgctxt "City in Georgia, United States"
 
9626
+msgid "Lawrenceville"
 
9627
+msgstr ""
 
9628
+
 
9629
+#. A city in Georgia in the United States
 
9630
+#: ../data/Locations.xml.in.h:1910
 
9631
+msgctxt "City in Georgia, United States"
 
9632
+msgid "Rome"
 
9633
+msgstr ""
 
9634
+
 
9635
+#. The capital of Gibraltar
 
9636
+#: ../data/Locations.xml.in.h:1912
 
9637
+msgctxt "City in Gibraltar"
 
9638
+msgid "Gibraltar"
 
9639
+msgstr ""
 
9640
+
 
9641
+#. The capital of Greece.
 
9642
+#. "Athens" is the traditional English name.
 
9643
+#. The local name in Greek is "Athína / Αθήνα".
 
9644
+#.
 
9645
+#: ../data/Locations.xml.in.h:1917
 
9646
+msgctxt "City in Greece"
 
9647
+msgid "Athens"
 
9648
+msgstr ""
 
9649
+
 
9650
+#. A city in Guanajuato in Mexico
 
9651
+#: ../data/Locations.xml.in.h:1919
 
9652
+msgctxt "City in Guanajuato, Mexico"
 
9653
+msgid "León"
 
9654
+msgstr ""
 
9655
+
 
9656
+#. The capital of Guatemala
 
9657
+#: ../data/Locations.xml.in.h:1921
 
9658
+msgctxt "City in Guatemala"
 
9659
+msgid "Guatemala"
 
9660
+msgstr ""
 
9661
+
 
9662
+#. The capital of Guyana
 
9663
+#: ../data/Locations.xml.in.h:1923
 
9664
+msgctxt "City in Guyana"
 
9665
+msgid "Georgetown"
 
9666
+msgstr ""
 
9667
+
 
9668
+#. A city in Hamburg in Germany
 
9669
+#: ../data/Locations.xml.in.h:1925
 
9670
+msgctxt "City in Hamburg, Germany"
 
9671
+msgid "Hamburg"
 
9672
+msgstr ""
 
9673
+
 
9674
+#. A city in Idaho in the United States
 
9675
+#: ../data/Locations.xml.in.h:1927
 
9676
+msgctxt "City in Idaho, United States"
 
9677
+msgid "Caldwell"
 
9678
+msgstr ""
 
9679
+
 
9680
+#. A city in Idaho in the United States
 
9681
+#: ../data/Locations.xml.in.h:1929
 
9682
+msgctxt "City in Idaho, United States"
 
9683
+msgid "Lowell"
 
9684
+msgstr ""
 
9685
+
 
9686
+#. A city in Idaho in the United States
 
9687
+#: ../data/Locations.xml.in.h:1931
 
9688
+msgctxt "City in Idaho, United States"
 
9689
+msgid "Malta"
 
9690
+msgstr ""
 
9691
+
 
9692
+#. A city in Idaho in the United States
 
9693
+#: ../data/Locations.xml.in.h:1933
 
9694
+msgctxt "City in Idaho, United States"
 
9695
+msgid "Moscow"
 
9696
+msgstr ""
 
9697
+
 
9698
+#. A city in Idaho in the United States
 
9699
+#: ../data/Locations.xml.in.h:1935
 
9700
+msgctxt "City in Idaho, United States"
 
9701
+msgid "Mountain Home"
 
9702
+msgstr ""
 
9703
+
 
9704
+#. A city in Idaho in the United States
 
9705
+#: ../data/Locations.xml.in.h:1937
 
9706
+msgctxt "City in Idaho, United States"
 
9707
+msgid "Stanley"
 
9708
+msgstr ""
 
9709
+
 
9710
+#. A city in Illinois in the United States
 
9711
+#: ../data/Locations.xml.in.h:1939
 
9712
+msgctxt "City in Illinois, United States"
 
9713
+msgid "Aurora"
 
9714
+msgstr ""
 
9715
+
 
9716
+#. A city in Illinois in the United States
 
9717
+#: ../data/Locations.xml.in.h:1941
 
9718
+msgctxt "City in Illinois, United States"
 
9719
+msgid "Bloomington"
 
9720
+msgstr ""
 
9721
+
 
9722
+#. A city in Illinois in the United States
 
9723
+#: ../data/Locations.xml.in.h:1943
 
9724
+msgctxt "City in Illinois, United States"
 
9725
+msgid "Cairo"
 
9726
+msgstr ""
 
9727
+
 
9728
+#. A city in Illinois in the United States
 
9729
+#: ../data/Locations.xml.in.h:1945
 
9730
+msgctxt "City in Illinois, United States"
 
9731
+msgid "Danville"
 
9732
+msgstr ""
 
9733
+
 
9734
+#. A city in Illinois in the United States
 
9735
+#: ../data/Locations.xml.in.h:1947
 
9736
+msgctxt "City in Illinois, United States"
 
9737
+msgid "Decatur"
 
9738
+msgstr ""
 
9739
+
 
9740
+#. A city in Illinois in the United States
 
9741
+#: ../data/Locations.xml.in.h:1949
 
9742
+msgctxt "City in Illinois, United States"
 
9743
+msgid "Fairfield"
 
9744
+msgstr ""
 
9745
+
 
9746
+#. A city in Illinois in the United States
 
9747
+#: ../data/Locations.xml.in.h:1951
 
9748
+msgctxt "City in Illinois, United States"
 
9749
+msgid "Freeport"
 
9750
+msgstr ""
 
9751
+
 
9752
+#. A city in Illinois in the United States
 
9753
+#: ../data/Locations.xml.in.h:1953
 
9754
+msgctxt "City in Illinois, United States"
 
9755
+msgid "Harrisburg"
 
9756
+msgstr ""
 
9757
+
 
9758
+#. A city in Illinois in the United States
 
9759
+#: ../data/Locations.xml.in.h:1955
 
9760
+msgctxt "City in Illinois, United States"
 
9761
+msgid "Jacksonville"
 
9762
+msgstr ""
 
9763
+
 
9764
+#. A city in Illinois in the United States
 
9765
+#: ../data/Locations.xml.in.h:1957
 
9766
+msgctxt "City in Illinois, United States"
 
9767
+msgid "Lawrenceville"
 
9768
+msgstr ""
 
9769
+
 
9770
+#. A city in Illinois in the United States
 
9771
+#: ../data/Locations.xml.in.h:1959
 
9772
+msgctxt "City in Illinois, United States"
 
9773
+msgid "Lincoln"
 
9774
+msgstr ""
 
9775
+
 
9776
+#. A city in Illinois in the United States
 
9777
+#: ../data/Locations.xml.in.h:1961
 
9778
+msgctxt "City in Illinois, United States"
 
9779
+msgid "Litchfield"
 
9780
+msgstr ""
 
9781
+
 
9782
+#. A city in Illinois in the United States
 
9783
+#: ../data/Locations.xml.in.h:1963
 
9784
+msgctxt "City in Illinois, United States"
 
9785
+msgid "Marion"
 
9786
+msgstr ""
 
9787
+
 
9788
+#. A city in Illinois in the United States
 
9789
+#: ../data/Locations.xml.in.h:1965
 
9790
+msgctxt "City in Illinois, United States"
 
9791
+msgid "Morris"
 
9792
+msgstr ""
 
9793
+
 
9794
+#. A city in Illinois in the United States
 
9795
+#: ../data/Locations.xml.in.h:1967
 
9796
+msgctxt "City in Illinois, United States"
 
9797
+msgid "Paris"
 
9798
+msgstr ""
 
9799
+
 
9800
+#. A city in Illinois in the United States
 
9801
+#: ../data/Locations.xml.in.h:1969
 
9802
+msgctxt "City in Illinois, United States"
 
9803
+msgid "Peoria"
 
9804
+msgstr ""
 
9805
+
 
9806
+#. A city in Illinois in the United States
 
9807
+#: ../data/Locations.xml.in.h:1971
 
9808
+msgctxt "City in Illinois, United States"
 
9809
+msgid "Peru"
 
9810
+msgstr ""
 
9811
+
 
9812
+#. A city in Illinois in the United States
 
9813
+#: ../data/Locations.xml.in.h:1973
 
9814
+msgctxt "City in Illinois, United States"
 
9815
+msgid "Pittsfield"
 
9816
+msgstr ""
 
9817
+
 
9818
+#. A city in Illinois in the United States
 
9819
+#: ../data/Locations.xml.in.h:1975
 
9820
+msgctxt "City in Illinois, United States"
 
9821
+msgid "Pontiac"
 
9822
+msgstr ""
 
9823
+
 
9824
+#. A city in Illinois in the United States
 
9825
+#: ../data/Locations.xml.in.h:1977
 
9826
+msgctxt "City in Illinois, United States"
 
9827
+msgid "Salem"
 
9828
+msgstr ""
 
9829
+
 
9830
+#. A city in Illinois in the United States
 
9831
+#: ../data/Locations.xml.in.h:1979
 
9832
+msgctxt "City in Illinois, United States"
 
9833
+msgid "Sparta"
 
9834
+msgstr ""
 
9835
+
 
9836
+#. A city in Illinois in the United States
 
9837
+#: ../data/Locations.xml.in.h:1981
 
9838
+msgctxt "City in Illinois, United States"
 
9839
+msgid "Springfield"
 
9840
+msgstr ""
 
9841
+
 
9842
+#. A city in Indiana in the United States
 
9843
+#: ../data/Locations.xml.in.h:1983
 
9844
+msgctxt "City in Indiana, United States"
 
9845
+msgid "Anderson"
 
9846
+msgstr ""
 
9847
+
 
9848
+#. A city in Indiana in the United States
 
9849
+#: ../data/Locations.xml.in.h:1985
 
9850
+msgctxt "City in Indiana, United States"
 
9851
+msgid "Bloomington"
 
9852
+msgstr ""
 
9853
+
 
9854
+#. A city in Indiana in the United States
 
9855
+#: ../data/Locations.xml.in.h:1987
 
9856
+msgctxt "City in Indiana, United States"
 
9857
+msgid "Columbus"
 
9858
+msgstr ""
 
9859
+
 
9860
+#. A city in Indiana in the United States
 
9861
+#: ../data/Locations.xml.in.h:1989
 
9862
+msgctxt "City in Indiana, United States"
 
9863
+msgid "Elkhart"
 
9864
+msgstr ""
 
9865
+
 
9866
+#. A city in Indiana in the United States
 
9867
+#: ../data/Locations.xml.in.h:1991
 
9868
+msgctxt "City in Indiana, United States"
 
9869
+msgid "Lafayette"
 
9870
+msgstr ""
 
9871
+
 
9872
+#. A city in Indiana in the United States
 
9873
+#: ../data/Locations.xml.in.h:1993
 
9874
+msgctxt "City in Indiana, United States"
 
9875
+msgid "Peru"
 
9876
+msgstr ""
 
9877
+
 
9878
+#. A city in Indiana in the United States
 
9879
+#: ../data/Locations.xml.in.h:1995
 
9880
+msgctxt "City in Indiana, United States"
 
9881
+msgid "Valparaiso"
 
9882
+msgstr ""
 
9883
+
 
9884
+#. A city in Indiana in the United States
 
9885
+#: ../data/Locations.xml.in.h:1997
 
9886
+msgctxt "City in Indiana, United States"
 
9887
+msgid "Warsaw"
 
9888
+msgstr ""
 
9889
+
 
9890
+#. A city in Iowa in the United States
 
9891
+#: ../data/Locations.xml.in.h:1999
 
9892
+msgctxt "City in Iowa, United States"
 
9893
+msgid "Atlantic"
 
9894
+msgstr ""
 
9895
+
 
9896
+#. A city in Iowa in the United States
 
9897
+#: ../data/Locations.xml.in.h:2001
 
9898
+msgctxt "City in Iowa, United States"
 
9899
+msgid "Boone"
 
9900
+msgstr ""
 
9901
+
 
9902
+#. A city in Iowa in the United States
 
9903
+#: ../data/Locations.xml.in.h:2003
 
9904
+msgctxt "City in Iowa, United States"
 
9905
+msgid "Burlington"
 
9906
+msgstr ""
 
9907
+
 
9908
+#. A city in Iowa in the United States
 
9909
+#: ../data/Locations.xml.in.h:2005
 
9910
+msgctxt "City in Iowa, United States"
 
9911
+msgid "Clinton"
 
9912
+msgstr ""
 
9913
+
 
9914
+#. A city in Iowa in the United States
 
9915
+#: ../data/Locations.xml.in.h:2007
 
9916
+msgctxt "City in Iowa, United States"
 
9917
+msgid "Creston"
 
9918
+msgstr ""
 
9919
+
 
9920
+#. A city in Iowa in the United States
 
9921
+#: ../data/Locations.xml.in.h:2009
 
9922
+msgctxt "City in Iowa, United States"
 
9923
+msgid "Fairfield"
 
9924
+msgstr ""
 
9925
+
 
9926
+#. A city in Iowa in the United States
 
9927
+#: ../data/Locations.xml.in.h:2011
 
9928
+msgctxt "City in Iowa, United States"
 
9929
+msgid "Knoxville"
 
9930
+msgstr ""
 
9931
+
 
9932
+#. A city in Iowa in the United States
 
9933
+#: ../data/Locations.xml.in.h:2013
 
9934
+msgctxt "City in Iowa, United States"
 
9935
+msgid "Monticello"
 
9936
+msgstr ""
 
9937
+
 
9938
+#. A city in Iowa in the United States
 
9939
+#: ../data/Locations.xml.in.h:2015
 
9940
+msgctxt "City in Iowa, United States"
 
9941
+msgid "Mount Pleasant"
 
9942
+msgstr ""
 
9943
+
 
9944
+#. A city in Iowa in the United States
 
9945
+#: ../data/Locations.xml.in.h:2017
 
9946
+msgctxt "City in Iowa, United States"
 
9947
+msgid "Washington"
 
9948
+msgstr ""
 
9949
+
 
9950
+#. A city in Iowa in the United States
 
9951
+#: ../data/Locations.xml.in.h:2019
 
9952
+msgctxt "City in Iowa, United States"
 
9953
+msgid "Waterloo"
 
9954
+msgstr ""
 
9955
+
 
9956
+#. The capital of Ireland.
 
9957
+#. The local name in Irish is "Baile Átha Cliath".
 
9958
+#.
 
9959
+#: ../data/Locations.xml.in.h:2023
 
9960
+msgctxt "City in Ireland"
 
9961
+msgid "Dublin"
 
9962
+msgstr ""
 
9963
+
 
9964
+#. The capital of the Isle of Man
 
9965
+#: ../data/Locations.xml.in.h:2025
 
9966
+msgctxt "City in Isle of Man"
 
9967
+msgid "Douglas"
 
9968
+msgstr ""
 
9969
+
 
9970
+#. A city in Italy.
 
9971
+#. "Florence" is the traditional English name.
 
9972
+#. The local name in Italian is "Firenze".
 
9973
+#.
 
9974
+#: ../data/Locations.xml.in.h:2030
 
9975
+msgctxt "City in Italy"
 
9976
+msgid "Florence"
 
9977
+msgstr ""
 
9978
+
 
9979
+#. A city in Italy.
 
9980
+#. "Naples" is the traditional English name.
 
9981
+#. The local name in Italian is "Napoli".
 
9982
+#.
 
9983
+#: ../data/Locations.xml.in.h:2035
 
9984
+msgctxt "City in Italy"
 
9985
+msgid "Naples"
 
9986
+msgstr ""
 
9987
+
 
9988
+#. The capital of Italy.
 
9989
+#. "Rome" is the traditional English name.
 
9990
+#. The local name in Italian is "Roma".
 
9991
+#.
 
9992
+#: ../data/Locations.xml.in.h:2040
 
9993
+msgctxt "City in Italy"
 
9994
+msgid "Rome"
 
9995
+msgstr ""
 
9996
+
 
9997
+#. The capital of Jamaica
 
9998
+#: ../data/Locations.xml.in.h:2042
 
9999
+msgctxt "City in Jamaica"
 
10000
+msgid "Kingston"
 
10001
+msgstr ""
 
10002
+
 
10003
+#. A city in Kansas in the United States
 
10004
+#: ../data/Locations.xml.in.h:2044
 
10005
+msgctxt "City in Kansas, United States"
 
10006
+msgid "Elkhart"
 
10007
+msgstr ""
 
10008
+
 
10009
+#. A city in Kansas in the United States
 
10010
+#: ../data/Locations.xml.in.h:2046
 
10011
+msgctxt "City in Kansas, United States"
 
10012
+msgid "Emporia"
 
10013
+msgstr ""
 
10014
+
 
10015
+#. A city in Kansas in the United States
 
10016
+#: ../data/Locations.xml.in.h:2048
 
10017
+msgctxt "City in Kansas, United States"
 
10018
+msgid "Garden City"
 
10019
+msgstr ""
 
10020
+
 
10021
+#. A city in Kansas in the United States
 
10022
+#: ../data/Locations.xml.in.h:2050
 
10023
+msgctxt "City in Kansas, United States"
 
10024
+msgid "Hutchinson"
 
10025
+msgstr ""
 
10026
+
 
10027
+#. A city in Kansas in the United States
 
10028
+#: ../data/Locations.xml.in.h:2052
 
10029
+msgctxt "City in Kansas, United States"
 
10030
+msgid "Kansas City"
 
10031
+msgstr ""
 
10032
+
 
10033
+#. A city in Kansas in the United States
 
10034
+#: ../data/Locations.xml.in.h:2054
 
10035
+msgctxt "City in Kansas, United States"
 
10036
+msgid "Lawrence"
 
10037
+msgstr ""
 
10038
+
 
10039
+#. A city in Kentucky in the United States
 
10040
+#: ../data/Locations.xml.in.h:2056
 
10041
+msgctxt "City in Kentucky, United States"
 
10042
+msgid "Frankfort"
 
10043
+msgstr ""
 
10044
+
 
10045
+#. A city in Kentucky in the United States
 
10046
+#: ../data/Locations.xml.in.h:2058
 
10047
+msgctxt "City in Kentucky, United States"
 
10048
+msgid "Glasgow"
 
10049
+msgstr ""
 
10050
+
 
10051
+#. A city in Kentucky in the United States
 
10052
+#: ../data/Locations.xml.in.h:2060
 
10053
+msgctxt "City in Kentucky, United States"
 
10054
+msgid "Henderson"
 
10055
+msgstr ""
 
10056
+
 
10057
+#. A city in Kentucky in the United States
 
10058
+#: ../data/Locations.xml.in.h:2062
 
10059
+msgctxt "City in Kentucky, United States"
 
10060
+msgid "Jackson"
 
10061
+msgstr ""
 
10062
+
 
10063
+#. A city in Kentucky in the United States
 
10064
+#: ../data/Locations.xml.in.h:2064
 
10065
+msgctxt "City in Kentucky, United States"
 
10066
+msgid "Lexington"
 
10067
+msgstr ""
 
10068
+
 
10069
+#. A city in Kentucky in the United States
 
10070
+#: ../data/Locations.xml.in.h:2066
 
10071
+msgctxt "City in Kentucky, United States"
 
10072
+msgid "London"
 
10073
+msgstr ""
 
10074
+
 
10075
+#. A city in Kiribati
 
10076
+#: ../data/Locations.xml.in.h:2068
 
10077
+msgctxt "City in Kiribati"
 
10078
+msgid "London"
 
10079
+msgstr ""
 
10080
+
 
10081
+#. The capital of Kuwait.
 
10082
+#. "Kuwait" is the traditional English name.
 
10083
+#. The local name in Arabic is "Al Kuwayt / الكويت".
 
10084
+#.
 
10085
+#: ../data/Locations.xml.in.h:2073
 
10086
+msgctxt "City in Kuwait"
 
10087
+msgid "Kuwait"
 
10088
+msgstr ""
 
10089
+
 
10090
+#. A city in Louisiana in the United States
 
10091
+#: ../data/Locations.xml.in.h:2075
 
10092
+msgctxt "City in Louisiana, United States"
 
10093
+msgid "Alexandria"
 
10094
+msgstr ""
 
10095
+
 
10096
+#. A city in Louisiana in the United States
 
10097
+#: ../data/Locations.xml.in.h:2077
 
10098
+msgctxt "City in Louisiana, United States"
 
10099
+msgid "Garden City"
 
10100
+msgstr ""
 
10101
+
 
10102
+#. A city in Louisiana in the United States
 
10103
+#: ../data/Locations.xml.in.h:2079
 
10104
+msgctxt "City in Louisiana, United States"
 
10105
+msgid "Lafayette"
 
10106
+msgstr ""
 
10107
+
 
10108
+#. A city in Louisiana in the United States
 
10109
+#: ../data/Locations.xml.in.h:2081
 
10110
+msgctxt "City in Louisiana, United States"
 
10111
+msgid "Monroe"
 
10112
+msgstr ""
 
10113
+
 
10114
+#. The capital of Luxembourg
 
10115
+#: ../data/Locations.xml.in.h:2083
 
10116
+msgctxt "City in Luxembourg"
 
10117
+msgid "Luxembourg"
 
10118
+msgstr ""
 
10119
+
 
10120
+#. The capital of Macau.
 
10121
+#. The local name in Chinese is "Aomen / 澳门".
 
10122
+#.
 
10123
+#: ../data/Locations.xml.in.h:2087
 
10124
+msgctxt "City in Macau"
 
10125
+msgid "Macau"
 
10126
+msgstr ""
 
10127
+
 
10128
+#. A city in Maine in the United States
 
10129
+#: ../data/Locations.xml.in.h:2089
 
10130
+msgctxt "City in Maine, United States"
 
10131
+msgid "Auburn"
 
10132
+msgstr ""
 
10133
+
 
10134
+#. A city in Maine in the United States
 
10135
+#: ../data/Locations.xml.in.h:2091
 
10136
+msgctxt "City in Maine, United States"
 
10137
+msgid "Augusta"
 
10138
+msgstr ""
 
10139
+
 
10140
+#. A city in Maine in the United States
 
10141
+#: ../data/Locations.xml.in.h:2093
 
10142
+msgctxt "City in Maine, United States"
 
10143
+msgid "Brunswick"
 
10144
+msgstr ""
 
10145
+
 
10146
+#. A city in Maine in the United States
 
10147
+#: ../data/Locations.xml.in.h:2095
 
10148
+msgctxt "City in Maine, United States"
 
10149
+msgid "Greenville"
 
10150
+msgstr ""
 
10151
+
 
10152
+#. A city in Maine in the United States
 
10153
+#: ../data/Locations.xml.in.h:2097
 
10154
+msgctxt "City in Maine, United States"
 
10155
+msgid "Portland"
 
10156
+msgstr ""
 
10157
+
 
10158
+#. A city in Maine in the United States
 
10159
+#: ../data/Locations.xml.in.h:2099
 
10160
+msgctxt "City in Maine, United States"
 
10161
+msgid "Sanford"
 
10162
+msgstr ""
 
10163
+
 
10164
+#. A city in Malaysia
 
10165
+#: ../data/Locations.xml.in.h:2101
 
10166
+msgctxt "City in Malaysia"
 
10167
+msgid "George Town"
 
10168
+msgstr ""
 
10169
+
 
10170
+#. A city in Malaysia
 
10171
+#: ../data/Locations.xml.in.h:2103
 
10172
+msgctxt "City in Malaysia"
 
10173
+msgid "Victoria"
 
10174
+msgstr ""
 
10175
+
 
10176
+#. A city in Manitoba in Canada
 
10177
+#: ../data/Locations.xml.in.h:2105
 
10178
+msgctxt "City in Manitoba, Canada"
 
10179
+msgid "Grand Rapids"
 
10180
+msgstr ""
 
10181
+
 
10182
+#. A city in Manitoba in Canada
 
10183
+#: ../data/Locations.xml.in.h:2107
 
10184
+msgctxt "City in Manitoba, Canada"
 
10185
+msgid "Miami"
 
10186
+msgstr ""
 
10187
+
 
10188
+#. A city in Maryland in the United States
 
10189
+#: ../data/Locations.xml.in.h:2109
 
10190
+msgctxt "City in Maryland, United States"
 
10191
+msgid "Frederick"
 
10192
+msgstr ""
 
10193
+
 
10194
+#. A city in Maryland in the United States
 
10195
+#: ../data/Locations.xml.in.h:2111
 
10196
+msgctxt "City in Maryland, United States"
 
10197
+msgid "Salisbury"
 
10198
+msgstr ""
 
10199
+
 
10200
+#. A city in Massachusetts in the United States
 
10201
+#: ../data/Locations.xml.in.h:2113
 
10202
+msgctxt "City in Massachusetts, United States"
 
10203
+msgid "Bedford"
 
10204
+msgstr ""
 
10205
+
 
10206
+#. A city in Massachusetts in the United States
 
10207
+#: ../data/Locations.xml.in.h:2115
 
10208
+msgctxt "City in Massachusetts, United States"
 
10209
+msgid "Cambridge"
 
10210
+msgstr ""
 
10211
+
 
10212
+#. A city in Massachusetts in the United States
 
10213
+#: ../data/Locations.xml.in.h:2117
 
10214
+msgctxt "City in Massachusetts, United States"
 
10215
+msgid "Lawrence"
 
10216
+msgstr ""
 
10217
+
 
10218
+#. A city in Massachusetts in the United States
 
10219
+#: ../data/Locations.xml.in.h:2119
 
10220
+msgctxt "City in Massachusetts, United States"
 
10221
+msgid "Lowell"
 
10222
+msgstr ""
 
10223
+
 
10224
+#. A city in Massachusetts in the United States
 
10225
+#: ../data/Locations.xml.in.h:2121
 
10226
+msgctxt "City in Massachusetts, United States"
 
10227
+msgid "Orange"
 
10228
+msgstr ""
 
10229
+
 
10230
+#. A city in Massachusetts in the United States
 
10231
+#: ../data/Locations.xml.in.h:2123
 
10232
+msgctxt "City in Massachusetts, United States"
 
10233
+msgid "Pittsfield"
 
10234
+msgstr ""
 
10235
+
 
10236
+#. A city in Massachusetts in the United States
 
10237
+#: ../data/Locations.xml.in.h:2125
 
10238
+msgctxt "City in Massachusetts, United States"
 
10239
+msgid "Plymouth"
 
10240
+msgstr ""
 
10241
+
 
10242
+#. A city in Massachusetts in the United States
 
10243
+#: ../data/Locations.xml.in.h:2127
 
10244
+msgctxt "City in Massachusetts, United States"
 
10245
+msgid "Springfield"
 
10246
+msgstr ""
 
10247
+
 
10248
+#. A city in Michigan in the United States
 
10249
+#: ../data/Locations.xml.in.h:2129
 
10250
+msgctxt "City in Michigan, United States"
 
10251
+msgid "Alma"
 
10252
+msgstr ""
 
10253
+
 
10254
+#. A city in Michigan in the United States
 
10255
+#: ../data/Locations.xml.in.h:2131
 
10256
+msgctxt "City in Michigan, United States"
 
10257
+msgid "Charlotte"
 
10258
+msgstr ""
 
10259
+
 
10260
+#. A city in Michigan in the United States
 
10261
+#: ../data/Locations.xml.in.h:2133
 
10262
+msgctxt "City in Michigan, United States"
 
10263
+msgid "Frankfort"
 
10264
+msgstr ""
 
10265
+
 
10266
+#. A city in Michigan in the United States
 
10267
+#: ../data/Locations.xml.in.h:2135
 
10268
+msgctxt "City in Michigan, United States"
 
10269
+msgid "Grand Rapids"
 
10270
+msgstr ""
 
10271
+
 
10272
+#. A city in Michigan in the United States
 
10273
+#: ../data/Locations.xml.in.h:2137
 
10274
+msgctxt "City in Michigan, United States"
 
10275
+msgid "Jackson"
 
10276
+msgstr ""
 
10277
+
 
10278
+#. A city in Michigan in the United States
 
10279
+#: ../data/Locations.xml.in.h:2139
 
10280
+msgctxt "City in Michigan, United States"
 
10281
+msgid "Marshall"
 
10282
+msgstr ""
 
10283
+
 
10284
+#. A city in Michigan in the United States
 
10285
+#: ../data/Locations.xml.in.h:2141
 
10286
+msgctxt "City in Michigan, United States"
 
10287
+msgid "Marysville"
 
10288
+msgstr ""
 
10289
+
 
10290
+#. A city in Michigan in the United States
 
10291
+#: ../data/Locations.xml.in.h:2143
 
10292
+msgctxt "City in Michigan, United States"
 
10293
+msgid "Monroe"
 
10294
+msgstr ""
 
10295
+
 
10296
+#. A city in Michigan in the United States
 
10297
+#: ../data/Locations.xml.in.h:2145
 
10298
+msgctxt "City in Michigan, United States"
 
10299
+msgid "Mount Pleasant"
 
10300
+msgstr ""
 
10301
+
 
10302
+#. A city in Michigan in the United States
 
10303
+#: ../data/Locations.xml.in.h:2147
 
10304
+msgctxt "City in Michigan, United States"
 
10305
+msgid "Pontiac"
 
10306
+msgstr ""
 
10307
+
 
10308
+#. A city in Michigan in the United States
 
10309
+#: ../data/Locations.xml.in.h:2149
 
10310
+msgctxt "City in Michigan, United States"
 
10311
+msgid "Saint James"
 
10312
+msgstr ""
 
10313
+
 
10314
+#. A city in Michigan in the United States
 
10315
+#: ../data/Locations.xml.in.h:2151
 
10316
+msgctxt "City in Michigan, United States"
 
10317
+msgid "Troy"
 
10318
+msgstr ""
 
10319
+
 
10320
+#. A city in Midlands in the United Kingdom
 
10321
+#: ../data/Locations.xml.in.h:2153
 
10322
+msgctxt "City in Midlands, United Kingdom"
 
10323
+msgid "Birmingham"
 
10324
+msgstr ""
 
10325
+
 
10326
+#. A city in Minnesota in the United States
 
10327
+#: ../data/Locations.xml.in.h:2155
 
10328
+msgctxt "City in Minnesota, United States"
 
10329
+msgid "Alexandria"
 
10330
+msgstr ""
 
10331
+
 
10332
+#. A city in Minnesota in the United States
 
10333
+#: ../data/Locations.xml.in.h:2157
 
10334
+msgctxt "City in Minnesota, United States"
 
10335
+msgid "Appleton"
 
10336
+msgstr ""
 
10337
+
 
10338
+#. A city in Minnesota in the United States
 
10339
+#: ../data/Locations.xml.in.h:2159
 
10340
+msgctxt "City in Minnesota, United States"
 
10341
+msgid "Austin"
 
10342
+msgstr ""
 
10343
+
 
10344
+#. A city in Minnesota in the United States
 
10345
+#: ../data/Locations.xml.in.h:2161
 
10346
+msgctxt "City in Minnesota, United States"
 
10347
+msgid "Benson"
 
10348
+msgstr ""
 
10349
+
 
10350
+#. A city in Minnesota in the United States
 
10351
+#: ../data/Locations.xml.in.h:2163
 
10352
+msgctxt "City in Minnesota, United States"
 
10353
+msgid "Buffalo"
 
10354
+msgstr ""
 
10355
+
 
10356
+#. A city in Minnesota in the United States
 
10357
+#: ../data/Locations.xml.in.h:2165
 
10358
+msgctxt "City in Minnesota, United States"
 
10359
+msgid "Cambridge"
 
10360
+msgstr ""
 
10361
+
 
10362
+#. A city in Minnesota in the United States
 
10363
+#: ../data/Locations.xml.in.h:2167
 
10364
+msgctxt "City in Minnesota, United States"
 
10365
+msgid "Ely"
 
10366
+msgstr ""
 
10367
+
 
10368
+#. A city in Minnesota in the United States
 
10369
+#: ../data/Locations.xml.in.h:2169
 
10370
+msgctxt "City in Minnesota, United States"
 
10371
+msgid "Grand Rapids"
 
10372
+msgstr ""
 
10373
+
 
10374
+#. A city in Minnesota in the United States
 
10375
+#: ../data/Locations.xml.in.h:2171
 
10376
+msgctxt "City in Minnesota, United States"
 
10377
+msgid "Hutchinson"
 
10378
+msgstr ""
 
10379
+
 
10380
+#. A city in Minnesota in the United States
 
10381
+#: ../data/Locations.xml.in.h:2173
 
10382
+msgctxt "City in Minnesota, United States"
 
10383
+msgid "Jackson"
 
10384
+msgstr ""
 
10385
+
 
10386
+#. A city in Minnesota in the United States
 
10387
+#: ../data/Locations.xml.in.h:2175
 
10388
+msgctxt "City in Minnesota, United States"
 
10389
+msgid "Litchfield"
 
10390
+msgstr ""
 
10391
+
 
10392
+#. A city in Minnesota in the United States
 
10393
+#: ../data/Locations.xml.in.h:2177
 
10394
+msgctxt "City in Minnesota, United States"
 
10395
+msgid "Madison"
 
10396
+msgstr ""
 
10397
+
 
10398
+#. A city in Minnesota in the United States
 
10399
+#: ../data/Locations.xml.in.h:2179
 
10400
+msgctxt "City in Minnesota, United States"
 
10401
+msgid "Marshall"
 
10402
+msgstr ""
 
10403
+
 
10404
+#. A city in Minnesota in the United States
 
10405
+#: ../data/Locations.xml.in.h:2181
 
10406
+msgctxt "City in Minnesota, United States"
 
10407
+msgid "Montevideo"
 
10408
+msgstr ""
 
10409
+
 
10410
+#. A city in Minnesota in the United States
 
10411
+#: ../data/Locations.xml.in.h:2183
 
10412
+msgctxt "City in Minnesota, United States"
 
10413
+msgid "Morris"
 
10414
+msgstr ""
 
10415
+
 
10416
+#. A city in Minnesota in the United States
 
10417
+#: ../data/Locations.xml.in.h:2185
 
10418
+msgctxt "City in Minnesota, United States"
 
10419
+msgid "Princeton"
 
10420
+msgstr ""
 
10421
+
 
10422
+#. A city in Minnesota in the United States
 
10423
+#: ../data/Locations.xml.in.h:2187
 
10424
+msgctxt "City in Minnesota, United States"
 
10425
+msgid "Rochester"
 
10426
+msgstr ""
 
10427
+
 
10428
+#. A city in Minnesota in the United States
 
10429
+#: ../data/Locations.xml.in.h:2189
 
10430
+msgctxt "City in Minnesota, United States"
 
10431
+msgid "Roseau"
 
10432
+msgstr ""
 
10433
+
 
10434
+#. A city in Minnesota in the United States
 
10435
+#: ../data/Locations.xml.in.h:2191
 
10436
+msgctxt "City in Minnesota, United States"
 
10437
+msgid "Saint James"
 
10438
+msgstr ""
 
10439
+
 
10440
+#. A city in Mississippi in the United States
 
10441
+#: ../data/Locations.xml.in.h:2193
 
10442
+msgctxt "City in Mississippi, United States"
 
10443
+msgid "Columbus"
 
10444
+msgstr ""
 
10445
+
 
10446
+#. A city in Mississippi in the United States
 
10447
+#: ../data/Locations.xml.in.h:2195
 
10448
+msgctxt "City in Mississippi, United States"
 
10449
+msgid "Greenville"
 
10450
+msgstr ""
 
10451
+
 
10452
+#. A city in Mississippi in the United States
 
10453
+#: ../data/Locations.xml.in.h:2197
 
10454
+msgctxt "City in Mississippi, United States"
 
10455
+msgid "Greenwood"
 
10456
+msgstr ""
 
10457
+
 
10458
+#. A city in Mississippi in the United States
 
10459
+#: ../data/Locations.xml.in.h:2199
 
10460
+msgctxt "City in Mississippi, United States"
 
10461
+msgid "Jackson"
 
10462
+msgstr ""
 
10463
+
 
10464
+#. A city in Mississippi in the United States
 
10465
+#: ../data/Locations.xml.in.h:2201
 
10466
+msgctxt "City in Mississippi, United States"
 
10467
+msgid "Oxford"
 
10468
+msgstr ""
 
10469
+
 
10470
+#. A city in Missouri in the United States
 
10471
+#: ../data/Locations.xml.in.h:2203
 
10472
+msgctxt "City in Missouri, United States"
 
10473
+msgid "Columbia"
 
10474
+msgstr ""
 
10475
+
 
10476
+#. A city in Missouri in the United States
 
10477
+#: ../data/Locations.xml.in.h:2205
 
10478
+msgctxt "City in Missouri, United States"
 
10479
+msgid "Farmington"
 
10480
+msgstr ""
 
10481
+
 
10482
+#. A city in Missouri in the United States
 
10483
+#: ../data/Locations.xml.in.h:2207
 
10484
+msgctxt "City in Missouri, United States"
 
10485
+msgid "Kansas City"
 
10486
+msgstr ""
 
10487
+
 
10488
+#. A city in Missouri in the United States
 
10489
+#: ../data/Locations.xml.in.h:2209
 
10490
+msgctxt "City in Missouri, United States"
 
10491
+msgid "Springfield"
 
10492
+msgstr ""
 
10493
+
 
10494
+#. A city in Missouri in the United States
 
10495
+#: ../data/Locations.xml.in.h:2211
 
10496
+msgctxt "City in Missouri, United States"
 
10497
+msgid "Vichy"
 
10498
+msgstr ""
 
10499
+
 
10500
+#. The capital of Monaco
 
10501
+#: ../data/Locations.xml.in.h:2213
 
10502
+msgctxt "City in Monaco"
 
10503
+msgid "Monaco"
 
10504
+msgstr ""
 
10505
+
 
10506
+#. A city in Montana in the United States
 
10507
+#: ../data/Locations.xml.in.h:2215
 
10508
+msgctxt "City in Montana, United States"
 
10509
+msgid "Glasgow"
 
10510
+msgstr ""
 
10511
+
 
10512
+#. A city in Montana in the United States
 
10513
+#: ../data/Locations.xml.in.h:2217
 
10514
+msgctxt "City in Montana, United States"
 
10515
+msgid "Jordan"
 
10516
+msgstr ""
 
10517
+
 
10518
+#. A city in Montana in the United States
 
10519
+#: ../data/Locations.xml.in.h:2219
 
10520
+msgctxt "City in Montana, United States"
 
10521
+msgid "Sidney"
 
10522
+msgstr ""
 
10523
+
 
10524
+#. A city in Nebraska in the United States
 
10525
+#: ../data/Locations.xml.in.h:2221
 
10526
+msgctxt "City in Nebraska, United States"
 
10527
+msgid "Aurora"
 
10528
+msgstr ""
 
10529
+
 
10530
+#. A city in Nebraska in the United States
 
10531
+#: ../data/Locations.xml.in.h:2223
 
10532
+msgctxt "City in Nebraska, United States"
 
10533
+msgid "Columbus"
 
10534
+msgstr ""
 
10535
+
 
10536
+#. A city in Nebraska in the United States
 
10537
+#: ../data/Locations.xml.in.h:2225
 
10538
+msgctxt "City in Nebraska, United States"
 
10539
+msgid "Fremont"
 
10540
+msgstr ""
 
10541
+
 
10542
+#. A city in Nebraska in the United States
 
10543
+#: ../data/Locations.xml.in.h:2227
 
10544
+msgctxt "City in Nebraska, United States"
 
10545
+msgid "Hebron"
 
10546
+msgstr ""
 
10547
+
 
10548
+#. A city in Nebraska in the United States
 
10549
+#: ../data/Locations.xml.in.h:2229
 
10550
+msgctxt "City in Nebraska, United States"
 
10551
+msgid "Imperial"
 
10552
+msgstr ""
 
10553
+
 
10554
+#. A city in Nebraska in the United States
 
10555
+#: ../data/Locations.xml.in.h:2231
 
10556
+msgctxt "City in Nebraska, United States"
 
10557
+msgid "Lexington"
 
10558
+msgstr ""
 
10559
+
 
10560
+#. A city in Nebraska in the United States
 
10561
+#: ../data/Locations.xml.in.h:2233
 
10562
+msgctxt "City in Nebraska, United States"
 
10563
+msgid "Lincoln"
 
10564
+msgstr ""
 
10565
+
 
10566
+#. A city in Nebraska in the United States
 
10567
+#: ../data/Locations.xml.in.h:2235
 
10568
+msgctxt "City in Nebraska, United States"
 
10569
+msgid "Norfolk"
 
10570
+msgstr ""
 
10571
+
 
10572
+#. A city in Nebraska in the United States
 
10573
+#: ../data/Locations.xml.in.h:2237
 
10574
+msgctxt "City in Nebraska, United States"
 
10575
+msgid "Sidney"
 
10576
+msgstr ""
 
10577
+
 
10578
+#. A city in Nebraska in the United States
 
10579
+#: ../data/Locations.xml.in.h:2239
 
10580
+msgctxt "City in Nebraska, United States"
 
10581
+msgid "York"
 
10582
+msgstr ""
 
10583
+
 
10584
+#. A city in Nevada in the United States
 
10585
+#: ../data/Locations.xml.in.h:2241
 
10586
+msgctxt "City in Nevada, United States"
 
10587
+msgid "Ely"
 
10588
+msgstr ""
 
10589
+
 
10590
+#. A city in Nevada in the United States
 
10591
+#: ../data/Locations.xml.in.h:2243
 
10592
+msgctxt "City in Nevada, United States"
 
10593
+msgid "Eureka"
 
10594
+msgstr ""
 
10595
+
 
10596
+#. A city in Nevada in the United States
 
10597
+#: ../data/Locations.xml.in.h:2245
 
10598
+msgctxt "City in Nevada, United States"
 
10599
+msgid "Henderson"
 
10600
+msgstr ""
 
10601
+
 
10602
+#. A city in Nevada in the United States
 
10603
+#: ../data/Locations.xml.in.h:2247
 
10604
+msgctxt "City in Nevada, United States"
 
10605
+msgid "Las Vegas"
 
10606
+msgstr ""
 
10607
+
 
10608
+#. A city in New Hampshire in the United States
 
10609
+#: ../data/Locations.xml.in.h:2249
 
10610
+msgctxt "City in New Hampshire, United States"
 
10611
+msgid "Berlin"
 
10612
+msgstr ""
 
10613
+
 
10614
+#. A city in New Hampshire in the United States
 
10615
+#: ../data/Locations.xml.in.h:2251
 
10616
+msgctxt "City in New Hampshire, United States"
 
10617
+msgid "Concord"
 
10618
+msgstr ""
 
10619
+
 
10620
+#. A city in New Hampshire in the United States
 
10621
+#: ../data/Locations.xml.in.h:2253
 
10622
+msgctxt "City in New Hampshire, United States"
 
10623
+msgid "Lebanon"
 
10624
+msgstr ""
 
10625
+
 
10626
+#. A city in New Hampshire in the United States
 
10627
+#: ../data/Locations.xml.in.h:2255
 
10628
+msgctxt "City in New Hampshire, United States"
 
10629
+msgid "Manchester"
 
10630
+msgstr ""
 
10631
+
 
10632
+#. A city in New Hampshire in the United States
 
10633
+#: ../data/Locations.xml.in.h:2257
 
10634
+msgctxt "City in New Hampshire, United States"
 
10635
+msgid "Plymouth"
 
10636
+msgstr ""
 
10637
+
 
10638
+#. A city in New Hampshire in the United States
 
10639
+#: ../data/Locations.xml.in.h:2259
 
10640
+msgctxt "City in New Hampshire, United States"
 
10641
+msgid "Portsmouth"
 
10642
+msgstr ""
 
10643
+
 
10644
+#. A city in New Hampshire in the United States
 
10645
+#: ../data/Locations.xml.in.h:2261
 
10646
+msgctxt "City in New Hampshire, United States"
 
10647
+msgid "Rochester"
 
10648
+msgstr ""
 
10649
+
 
10650
+#. A city in New Jersey in the United States
 
10651
+#: ../data/Locations.xml.in.h:2263
 
10652
+msgctxt "City in New Jersey, United States"
 
10653
+msgid "Caldwell"
 
10654
+msgstr ""
 
10655
+
 
10656
+#. A city in New Jersey in the United States
 
10657
+#: ../data/Locations.xml.in.h:2265
 
10658
+msgctxt "City in New Jersey, United States"
 
10659
+msgid "Newark"
 
10660
+msgstr ""
 
10661
+
 
10662
+#. A city in New Jersey in the United States
 
10663
+#: ../data/Locations.xml.in.h:2267
 
10664
+msgctxt "City in New Jersey, United States"
 
10665
+msgid "Trenton"
 
10666
+msgstr ""
 
10667
+
 
10668
+#. A city in New Mexico in the United States
 
10669
+#: ../data/Locations.xml.in.h:2269
 
10670
+msgctxt "City in New Mexico, United States"
 
10671
+msgid "Carlsbad"
 
10672
+msgstr ""
 
10673
+
 
10674
+#. A city in New Mexico in the United States
 
10675
+#: ../data/Locations.xml.in.h:2271
 
10676
+msgctxt "City in New Mexico, United States"
 
10677
+msgid "Corona"
 
10678
+msgstr ""
 
10679
+
 
10680
+#. A city in New Mexico in the United States
 
10681
+#: ../data/Locations.xml.in.h:2273
 
10682
+msgctxt "City in New Mexico, United States"
 
10683
+msgid "Farmington"
 
10684
+msgstr ""
 
10685
+
 
10686
+#. A city in New Mexico in the United States
 
10687
+#: ../data/Locations.xml.in.h:2275
 
10688
+msgctxt "City in New Mexico, United States"
 
10689
+msgid "Las Vegas"
 
10690
+msgstr ""
 
10691
+
 
10692
+#. A city in New South Wales in Australia
 
10693
+#: ../data/Locations.xml.in.h:2277
 
10694
+msgctxt "City in New South Wales, Australia"
 
10695
+msgid "Richmond"
 
10696
+msgstr ""
 
10697
+
 
10698
+#. A city in New South Wales in Australia
 
10699
+#: ../data/Locations.xml.in.h:2279
 
10700
+msgctxt "City in New South Wales, Australia"
 
10701
+msgid "Sydney"
 
10702
+msgstr ""
 
10703
+
 
10704
+#. A city in New York in the United States
 
10705
+#: ../data/Locations.xml.in.h:2281
 
10706
+msgctxt "City in New York, United States"
 
10707
+msgid "Albany"
 
10708
+msgstr ""
 
10709
+
 
10710
+#. A city in New York in the United States
 
10711
+#: ../data/Locations.xml.in.h:2283
 
10712
+msgctxt "City in New York, United States"
 
10713
+msgid "Buffalo"
 
10714
+msgstr ""
 
10715
+
 
10716
+#. A city in New York in the United States
 
10717
+#: ../data/Locations.xml.in.h:2285
 
10718
+msgctxt "City in New York, United States"
 
10719
+msgid "Elmira"
 
10720
+msgstr ""
 
10721
+
 
10722
+#. A city in New York in the United States
 
10723
+#: ../data/Locations.xml.in.h:2287
 
10724
+msgctxt "City in New York, United States"
 
10725
+msgid "Jamestown"
 
10726
+msgstr ""
 
10727
+
 
10728
+#. A city in New York in the United States
 
10729
+#: ../data/Locations.xml.in.h:2289
 
10730
+msgctxt "City in New York, United States"
 
10731
+msgid "Montgomery"
 
10732
+msgstr ""
 
10733
+
 
10734
+#. A city in New York in the United States
 
10735
+#: ../data/Locations.xml.in.h:2291
 
10736
+msgctxt "City in New York, United States"
 
10737
+msgid "Monticello"
 
10738
+msgstr ""
 
10739
+
 
10740
+#. A city in New York in the United States
 
10741
+#: ../data/Locations.xml.in.h:2293
 
10742
+msgctxt "City in New York, United States"
 
10743
+msgid "New York"
 
10744
+msgstr ""
 
10745
+
 
10746
+#. A city in New York in the United States
 
10747
+#: ../data/Locations.xml.in.h:2295
 
10748
+msgctxt "City in New York, United States"
 
10749
+msgid "Rochester"
 
10750
+msgstr ""
 
10751
+
 
10752
+#. A city in New York in the United States
 
10753
+#: ../data/Locations.xml.in.h:2297
 
10754
+msgctxt "City in New York, United States"
 
10755
+msgid "Rome"
 
10756
+msgstr ""
 
10757
+
 
10758
+#. A city in New York in the United States
 
10759
+#: ../data/Locations.xml.in.h:2299
 
10760
+msgctxt "City in New York, United States"
 
10761
+msgid "Watertown"
 
10762
+msgstr ""
 
10763
+
 
10764
+#. A city in Newfoundland and Labrador in Canada
 
10765
+#: ../data/Locations.xml.in.h:2301
 
10766
+msgctxt "City in Newfoundland and Labrador, Canada"
 
10767
+msgid "Hebron"
 
10768
+msgstr ""
 
10769
+
 
10770
+#. A city in Newfoundland and Labrador in Canada
 
10771
+#: ../data/Locations.xml.in.h:2303
 
10772
+msgctxt "City in Newfoundland and Labrador, Canada"
 
10773
+msgid "Saint John's"
 
10774
+msgstr ""
 
10775
+
 
10776
+#. A city in Newfoundland and Labrador in Canada
 
10777
+#: ../data/Locations.xml.in.h:2305
 
10778
+msgctxt "City in Newfoundland and Labrador, Canada"
 
10779
+msgid "Stephenville"
 
10780
+msgstr ""
 
10781
+
 
10782
+#. A city in Norfolk Island
 
10783
+#: ../data/Locations.xml.in.h:2307
 
10784
+msgctxt "City in Norfolk Island"
 
10785
+msgid "Kingston"
 
10786
+msgstr ""
 
10787
+
 
10788
+#. A city in North Carolina in the United States
 
10789
+#: ../data/Locations.xml.in.h:2309
 
10790
+msgctxt "City in North Carolina, United States"
 
10791
+msgid "Beaufort"
 
10792
+msgstr ""
 
10793
+
 
10794
+#. A city in North Carolina in the United States
 
10795
+#: ../data/Locations.xml.in.h:2311
 
10796
+msgctxt "City in North Carolina, United States"
 
10797
+msgid "Boone"
 
10798
+msgstr ""
 
10799
+
 
10800
+#. A city in North Carolina in the United States
 
10801
+#: ../data/Locations.xml.in.h:2313
 
10802
+msgctxt "City in North Carolina, United States"
 
10803
+msgid "Burlington"
 
10804
+msgstr ""
 
10805
+
 
10806
+#. A city in North Carolina in the United States
 
10807
+#: ../data/Locations.xml.in.h:2315
 
10808
+msgctxt "City in North Carolina, United States"
 
10809
+msgid "Charlotte"
 
10810
+msgstr ""
 
10811
+
 
10812
+#. A city in North Carolina in the United States
 
10813
+#: ../data/Locations.xml.in.h:2317
 
10814
+msgctxt "City in North Carolina, United States"
 
10815
+msgid "Clinton"
 
10816
+msgstr ""
 
10817
+
 
10818
+#. A city in North Carolina in the United States
 
10819
+#: ../data/Locations.xml.in.h:2319
 
10820
+msgctxt "City in North Carolina, United States"
 
10821
+msgid "Concord"
 
10822
+msgstr ""
 
10823
+
 
10824
+#. A city in North Carolina in the United States
 
10825
+#: ../data/Locations.xml.in.h:2321
 
10826
+msgctxt "City in North Carolina, United States"
 
10827
+msgid "Fayetteville"
 
10828
+msgstr ""
 
10829
+
 
10830
+#. A city in North Carolina in the United States
 
10831
+#: ../data/Locations.xml.in.h:2323
 
10832
+msgctxt "City in North Carolina, United States"
 
10833
+msgid "Franklin"
 
10834
+msgstr ""
 
10835
+
 
10836
+#. A city in North Carolina in the United States
 
10837
+#: ../data/Locations.xml.in.h:2325
 
10838
+msgctxt "City in North Carolina, United States"
 
10839
+msgid "Greensboro"
 
10840
+msgstr ""
 
10841
+
 
10842
+#. A city in North Carolina in the United States
 
10843
+#: ../data/Locations.xml.in.h:2327
 
10844
+msgctxt "City in North Carolina, United States"
 
10845
+msgid "Jacksonville"
 
10846
+msgstr ""
 
10847
+
 
10848
+#. A city in North Carolina in the United States
 
10849
+#: ../data/Locations.xml.in.h:2329
 
10850
+msgctxt "City in North Carolina, United States"
 
10851
+msgid "Lexington"
 
10852
+msgstr ""
 
10853
+
 
10854
+#. A city in North Carolina in the United States
 
10855
+#: ../data/Locations.xml.in.h:2331
 
10856
+msgctxt "City in North Carolina, United States"
 
10857
+msgid "Monroe"
 
10858
+msgstr ""
 
10859
+
 
10860
+#. A city in North Carolina in the United States
 
10861
+#: ../data/Locations.xml.in.h:2333
 
10862
+msgctxt "City in North Carolina, United States"
 
10863
+msgid "Oxford"
 
10864
+msgstr ""
 
10865
+
 
10866
+#. A city in North Carolina in the United States
 
10867
+#: ../data/Locations.xml.in.h:2335
 
10868
+msgctxt "City in North Carolina, United States"
 
10869
+msgid "Salisbury"
 
10870
+msgstr ""
 
10871
+
 
10872
+#. A city in North Carolina in the United States
 
10873
+#: ../data/Locations.xml.in.h:2337
 
10874
+msgctxt "City in North Carolina, United States"
 
10875
+msgid "Sanford"
 
10876
+msgstr ""
 
10877
+
 
10878
+#. A city in North Carolina in the United States
 
10879
+#: ../data/Locations.xml.in.h:2339
 
10880
+msgctxt "City in North Carolina, United States"
 
10881
+msgid "Washington"
 
10882
+msgstr ""
 
10883
+
 
10884
+#. A city in North Carolina in the United States
 
10885
+#: ../data/Locations.xml.in.h:2341
 
10886
+msgctxt "City in North Carolina, United States"
 
10887
+msgid "Wilmington"
 
10888
+msgstr ""
 
10889
+
 
10890
+#. A city in North Dakota in the United States
 
10891
+#: ../data/Locations.xml.in.h:2343
 
10892
+msgctxt "City in North Dakota, United States"
 
10893
+msgid "Jamestown"
 
10894
+msgstr ""
 
10895
+
 
10896
+#. A city in North East England in the United Kingdom
 
10897
+#: ../data/Locations.xml.in.h:2345
 
10898
+msgctxt "City in North East England, United Kingdom"
 
10899
+msgid "Newcastle"
 
10900
+msgstr ""
 
10901
+
 
10902
+#. A city in North East England in the United Kingdom
 
10903
+#: ../data/Locations.xml.in.h:2347
 
10904
+msgctxt "City in North East England, United Kingdom"
 
10905
+msgid "Stockton"
 
10906
+msgstr ""
 
10907
+
 
10908
+#. A city in North West England in the United Kingdom
 
10909
+#: ../data/Locations.xml.in.h:2349
 
10910
+msgctxt "City in North West England, United Kingdom"
 
10911
+msgid "Liverpool"
 
10912
+msgstr ""
 
10913
+
 
10914
+#. A city in North West England in the United Kingdom
 
10915
+#: ../data/Locations.xml.in.h:2351
 
10916
+msgctxt "City in North West England, United Kingdom"
 
10917
+msgid "Manchester"
 
10918
+msgstr ""
 
10919
+
 
10920
+#. A city in Northwest Territories in Canada
 
10921
+#: ../data/Locations.xml.in.h:2353
 
10922
+msgctxt "City in Northwest Territories, Canada"
 
10923
+msgid "Fort Smith"
 
10924
+msgstr ""
 
10925
+
 
10926
+#. A city in Nova Scotia in Canada
 
10927
+#: ../data/Locations.xml.in.h:2355
 
10928
+msgctxt "City in Nova Scotia, Canada"
 
10929
+msgid "Greenwood"
 
10930
+msgstr ""
 
10931
+
 
10932
+#. A city in Nova Scotia in Canada
 
10933
+#: ../data/Locations.xml.in.h:2357
 
10934
+msgctxt "City in Nova Scotia, Canada"
 
10935
+msgid "Liverpool"
 
10936
+msgstr ""
 
10937
+
 
10938
+#. A city in Nova Scotia in Canada
 
10939
+#: ../data/Locations.xml.in.h:2359
 
10940
+msgctxt "City in Nova Scotia, Canada"
 
10941
+msgid "Sydney"
 
10942
+msgstr ""
 
10943
+
 
10944
+#. A city in Nunavut in Canada
 
10945
+#: ../data/Locations.xml.in.h:2361
 
10946
+msgctxt "City in Nunavut, Canada"
 
10947
+msgid "Eureka"
 
10948
+msgstr ""
 
10949
+
 
10950
+#. A city in Oaxaca in Mexico
 
10951
+#: ../data/Locations.xml.in.h:2363
 
10952
+msgctxt "City in Oaxaca, Mexico"
 
10953
+msgid "Oaxaca"
 
10954
+msgstr ""
 
10955
+
 
10956
+#. A city in Ohio in the United States
 
10957
+#: ../data/Locations.xml.in.h:2365
 
10958
+msgctxt "City in Ohio, United States"
 
10959
+msgid "Akron"
 
10960
+msgstr ""
 
10961
+
 
10962
+#. A city in Ohio in the United States
 
10963
+#: ../data/Locations.xml.in.h:2367
 
10964
+msgctxt "City in Ohio, United States"
 
10965
+msgid "Columbus"
 
10966
+msgstr ""
 
10967
+
 
10968
+#. A city in Ohio in the United States
 
10969
+#: ../data/Locations.xml.in.h:2369
 
10970
+msgctxt "City in Ohio, United States"
 
10971
+msgid "Hamilton"
 
10972
+msgstr ""
 
10973
+
 
10974
+#. A city in Ohio in the United States
 
10975
+#: ../data/Locations.xml.in.h:2371
 
10976
+msgctxt "City in Ohio, United States"
 
10977
+msgid "Lancaster"
 
10978
+msgstr ""
 
10979
+
 
10980
+#. A city in Ohio in the United States
 
10981
+#: ../data/Locations.xml.in.h:2373
 
10982
+msgctxt "City in Ohio, United States"
 
10983
+msgid "Lima"
 
10984
+msgstr ""
 
10985
+
 
10986
+#. A city in Ohio in the United States
 
10987
+#: ../data/Locations.xml.in.h:2375
 
10988
+msgctxt "City in Ohio, United States"
 
10989
+msgid "Marion"
 
10990
+msgstr ""
 
10991
+
 
10992
+#. A city in Ohio in the United States
 
10993
+#: ../data/Locations.xml.in.h:2377
 
10994
+msgctxt "City in Ohio, United States"
 
10995
+msgid "Newark"
 
10996
+msgstr ""
 
10997
+
 
10998
+#. A city in Ohio in the United States
 
10999
+#: ../data/Locations.xml.in.h:2379
 
11000
+msgctxt "City in Ohio, United States"
 
11001
+msgid "Springfield"
 
11002
+msgstr ""
 
11003
+
 
11004
+#. A city in Ohio in the United States
 
11005
+#: ../data/Locations.xml.in.h:2381
 
11006
+msgctxt "City in Ohio, United States"
 
11007
+msgid "Wilmington"
 
11008
+msgstr ""
 
11009
+
 
11010
+#. A city in Oklahoma in the United States
 
11011
+#: ../data/Locations.xml.in.h:2383
 
11012
+msgctxt "City in Oklahoma, United States"
 
11013
+msgid "Chandler"
 
11014
+msgstr ""
 
11015
+
 
11016
+#. A city in Oklahoma in the United States
 
11017
+#: ../data/Locations.xml.in.h:2385
 
11018
+msgctxt "City in Oklahoma, United States"
 
11019
+msgid "Clinton"
 
11020
+msgstr ""
 
11021
+
 
11022
+#. A city in Oklahoma in the United States
 
11023
+#: ../data/Locations.xml.in.h:2387
 
11024
+msgctxt "City in Oklahoma, United States"
 
11025
+msgid "Frederick"
 
11026
+msgstr ""
 
11027
+
 
11028
+#. A city in Oklahoma in the United States
 
11029
+#: ../data/Locations.xml.in.h:2389
 
11030
+msgctxt "City in Oklahoma, United States"
 
11031
+msgid "Hobart"
 
11032
+msgstr ""
 
11033
+
 
11034
+#. A city in Oklahoma in the United States
 
11035
+#: ../data/Locations.xml.in.h:2391
 
11036
+msgctxt "City in Oklahoma, United States"
 
11037
+msgid "Seminole"
 
11038
+msgstr ""
 
11039
+
 
11040
+#. A city in Ontario in Canada
 
11041
+#: ../data/Locations.xml.in.h:2393
 
11042
+msgctxt "City in Ontario, Canada"
 
11043
+msgid "Burlington"
 
11044
+msgstr ""
 
11045
+
 
11046
+#. A city in Ontario in Canada
 
11047
+#: ../data/Locations.xml.in.h:2395
 
11048
+msgctxt "City in Ontario, Canada"
 
11049
+msgid "Dryden"
 
11050
+msgstr ""
 
11051
+
 
11052
+#. A city in Ontario in Canada
 
11053
+#: ../data/Locations.xml.in.h:2397
 
11054
+msgctxt "City in Ontario, Canada"
 
11055
+msgid "Hamilton"
 
11056
+msgstr ""
 
11057
+
 
11058
+#. A city in Ontario in Canada
 
11059
+#: ../data/Locations.xml.in.h:2399
 
11060
+msgctxt "City in Ontario, Canada"
 
11061
+msgid "Kingston"
 
11062
+msgstr ""
 
11063
+
 
11064
+#. A city in Ontario in Canada
 
11065
+#: ../data/Locations.xml.in.h:2401
 
11066
+msgctxt "City in Ontario, Canada"
 
11067
+msgid "London"
 
11068
+msgstr ""
 
11069
+
 
11070
+#. A city in Ontario in Canada
 
11071
+#: ../data/Locations.xml.in.h:2403
 
11072
+msgctxt "City in Ontario, Canada"
 
11073
+msgid "Trenton"
 
11074
+msgstr ""
 
11075
+
 
11076
+#. A city in Ontario in Canada
 
11077
+#: ../data/Locations.xml.in.h:2405
 
11078
+msgctxt "City in Ontario, Canada"
 
11079
+msgid "Waterloo"
 
11080
+msgstr ""
 
11081
+
 
11082
+#. A city in Oregon in the United States
 
11083
+#: ../data/Locations.xml.in.h:2407
 
11084
+msgctxt "City in Oregon, United States"
 
11085
+msgid "Aurora"
 
11086
+msgstr ""
 
11087
+
 
11088
+#. A city in Oregon in the United States
 
11089
+#: ../data/Locations.xml.in.h:2409
 
11090
+msgctxt "City in Oregon, United States"
 
11091
+msgid "Brookings"
 
11092
+msgstr ""
 
11093
+
 
11094
+#. A city in Oregon in the United States
 
11095
+#: ../data/Locations.xml.in.h:2411
 
11096
+msgctxt "City in Oregon, United States"
 
11097
+msgid "Medford"
 
11098
+msgstr ""
 
11099
+
 
11100
+#. A city in Oregon in the United States
 
11101
+#: ../data/Locations.xml.in.h:2413
 
11102
+msgctxt "City in Oregon, United States"
 
11103
+msgid "Newport"
 
11104
+msgstr ""
 
11105
+
 
11106
+#. A city in Oregon in the United States
 
11107
+#: ../data/Locations.xml.in.h:2415
 
11108
+msgctxt "City in Oregon, United States"
 
11109
+msgid "Ontario"
 
11110
+msgstr ""
 
11111
+
 
11112
+#. A city in Oregon in the United States
 
11113
+#: ../data/Locations.xml.in.h:2417
 
11114
+msgctxt "City in Oregon, United States"
 
11115
+msgid "Portland"
 
11116
+msgstr ""
 
11117
+
 
11118
+#. A city in Oregon in the United States
 
11119
+#: ../data/Locations.xml.in.h:2419
 
11120
+msgctxt "City in Oregon, United States"
 
11121
+msgid "Rome"
 
11122
+msgstr ""
 
11123
+
 
11124
+#. A city in Oregon in the United States
 
11125
+#: ../data/Locations.xml.in.h:2421
 
11126
+msgctxt "City in Oregon, United States"
 
11127
+msgid "Salem"
 
11128
+msgstr ""
 
11129
+
 
11130
+#. A city in Pennsylvania in the United States
 
11131
+#: ../data/Locations.xml.in.h:2423
 
11132
+msgctxt "City in Pennsylvania, United States"
 
11133
+msgid "Franklin"
 
11134
+msgstr ""
 
11135
+
 
11136
+#. A city in Pennsylvania in the United States
 
11137
+#: ../data/Locations.xml.in.h:2425
 
11138
+msgctxt "City in Pennsylvania, United States"
 
11139
+msgid "Harrisburg"
 
11140
+msgstr ""
 
11141
+
 
11142
+#. A city in Pennsylvania in the United States
 
11143
+#: ../data/Locations.xml.in.h:2427
 
11144
+msgctxt "City in Pennsylvania, United States"
 
11145
+msgid "Indiana"
 
11146
+msgstr ""
 
11147
+
 
11148
+#. A city in Pennsylvania in the United States
 
11149
+#: ../data/Locations.xml.in.h:2429
 
11150
+msgctxt "City in Pennsylvania, United States"
 
11151
+msgid "Lancaster"
 
11152
+msgstr ""
 
11153
+
 
11154
+#. A city in Pennsylvania in the United States
 
11155
+#: ../data/Locations.xml.in.h:2431
 
11156
+msgctxt "City in Pennsylvania, United States"
 
11157
+msgid "Washington"
 
11158
+msgstr ""
 
11159
+
 
11160
+#. A city in Pennsylvania in the United States
 
11161
+#: ../data/Locations.xml.in.h:2433
 
11162
+msgctxt "City in Pennsylvania, United States"
 
11163
+msgid "York"
 
11164
+msgstr ""
 
11165
+
 
11166
+#. The capital of Peru
 
11167
+#: ../data/Locations.xml.in.h:2435
 
11168
+msgctxt "City in Peru"
 
11169
+msgid "Lima"
 
11170
+msgstr ""
 
11171
+
 
11172
+#. The capital of Poland.
 
11173
+#. "Warsaw" is the traditional English name.
 
11174
+#. The local name in Polish is "Warszawa".
 
11175
+#.
 
11176
+#: ../data/Locations.xml.in.h:2440
 
11177
+msgctxt "City in Poland"
 
11178
+msgid "Warsaw"
 
11179
+msgstr ""
 
11180
+
 
11181
+#. A city in Prince Edward Island in Canada
 
11182
+#: ../data/Locations.xml.in.h:2442
 
11183
+msgctxt "City in Prince Edward Island, Canada"
 
11184
+msgid "Elmira"
 
11185
+msgstr ""
 
11186
+
 
11187
+#. A city in Puebla in Mexico
 
11188
+#: ../data/Locations.xml.in.h:2444
 
11189
+msgctxt "City in Puebla, Mexico"
 
11190
+msgid "Puebla"
 
11191
+msgstr ""
 
11192
+
 
11193
+#. A city in Quebec in Canada
 
11194
+#: ../data/Locations.xml.in.h:2446
 
11195
+msgctxt "City in Quebec, Canada"
 
11196
+msgid "Bedford"
 
11197
+msgstr ""
 
11198
+
 
11199
+#. A city in Quebec in Canada.
 
11200
+#. The local name in French is "Québec".
 
11201
+#.
 
11202
+#: ../data/Locations.xml.in.h:2450
 
11203
+msgctxt "City in Quebec, Canada"
 
11204
+msgid "Quebec"
 
11205
+msgstr ""
 
11206
+
 
11207
+#. A city in Querétaro in Mexico
 
11208
+#: ../data/Locations.xml.in.h:2452
 
11209
+msgctxt "City in Querétaro, Mexico"
 
11210
+msgid "Querétaro"
 
11211
+msgstr ""
 
11212
+
 
11213
+#. A city in Rhode Island in the United States
 
11214
+#: ../data/Locations.xml.in.h:2454
 
11215
+msgctxt "City in Rhode Island, United States"
 
11216
+msgid "Newport"
 
11217
+msgstr ""
 
11218
+
 
11219
+#. A city in Rio Grande do Norte in Brazil
 
11220
+#: ../data/Locations.xml.in.h:2456
 
11221
+msgctxt "City in Rio Grande do Norte, Brazil"
 
11222
+msgid "Natal"
 
11223
+msgstr ""
 
11224
+
 
11225
+#. A city in Rio Grande do Sul in Brazil
 
11226
+#: ../data/Locations.xml.in.h:2458
 
11227
+msgctxt "City in Rio Grande do Sul, Brazil"
 
11228
+msgid "Santa Maria"
 
11229
+msgstr ""
 
11230
+
 
11231
+#. A city in Rio de Janeiro in Brazil
 
11232
+#: ../data/Locations.xml.in.h:2460
 
11233
+msgctxt "City in Rio de Janeiro, Brazil"
 
11234
+msgid "Rio de Janeiro"
 
11235
+msgstr ""
 
11236
+
 
11237
+#. The capital of Russia.
 
11238
+#. "Moscow" is the traditional English name.
 
11239
+#. The local name in Russian is "Moskva / Москва".
 
11240
+#.
 
11241
+#: ../data/Locations.xml.in.h:2465
 
11242
+msgctxt "City in Russia"
 
11243
+msgid "Moscow"
 
11244
+msgstr ""
 
11245
+
 
11246
+#. A city in Réunion
 
11247
+#: ../data/Locations.xml.in.h:2467
 
11248
+msgctxt "City in Réunion"
 
11249
+msgid "Saint-Pierre"
 
11250
+msgstr ""
 
11251
+
 
11252
+#. A city in Saint Helena
 
11253
+#: ../data/Locations.xml.in.h:2469
 
11254
+msgctxt "City in Saint Helena"
 
11255
+msgid "Georgetown"
 
11256
+msgstr ""
 
11257
+
 
11258
+#. A city in Saint Kitts and Nevis
 
11259
+#: ../data/Locations.xml.in.h:2471
 
11260
+msgctxt "City in Saint Kitts and Nevis"
 
11261
+msgid "Newcastle"
 
11262
+msgstr ""
 
11263
+
 
11264
+#. The capital of Saint Pierre and Miquelon
 
11265
+#: ../data/Locations.xml.in.h:2473
 
11266
+msgctxt "City in Saint Pierre and Miquelon"
 
11267
+msgid "Saint-Pierre"
 
11268
+msgstr ""
 
11269
+
 
11270
+#. A city in San Luis Potosí in Mexico
 
11271
+#: ../data/Locations.xml.in.h:2475
 
11272
+msgctxt "City in San Luis Potosí, Mexico"
 
11273
+msgid "San Luis Potosí"
 
11274
+msgstr ""
 
11275
+
 
11276
+#. The capital of San Marino
 
11277
+#: ../data/Locations.xml.in.h:2477
 
11278
+msgctxt "City in San Marino"
 
11279
+msgid "San Marino"
 
11280
+msgstr ""
 
11281
+
 
11282
+#. A city in Saskatchewan in Canada
 
11283
+#: ../data/Locations.xml.in.h:2479
 
11284
+msgctxt "City in Saskatchewan, Canada"
 
11285
+msgid "Southend"
 
11286
+msgstr ""
 
11287
+
 
11288
+#. A city in Scotland in the United Kingdom
 
11289
+#: ../data/Locations.xml.in.h:2481
 
11290
+msgctxt "City in Scotland, United Kingdom"
 
11291
+msgid "Aberdeen"
 
11292
+msgstr ""
 
11293
+
 
11294
+#. A city in Scotland in the United Kingdom
 
11295
+#: ../data/Locations.xml.in.h:2483
 
11296
+msgctxt "City in Scotland, United Kingdom"
 
11297
+msgid "Glasgow"
 
11298
+msgstr ""
 
11299
+
 
11300
+#. The capital of the Seychelles
 
11301
+#: ../data/Locations.xml.in.h:2485
 
11302
+msgctxt "City in Seychelles"
 
11303
+msgid "Victoria"
 
11304
+msgstr ""
 
11305
+
 
11306
+#. A city in Shanghai in China.
 
11307
+#. The name is also written "上海".
 
11308
+#.
 
11309
+#: ../data/Locations.xml.in.h:2489
 
11310
+msgctxt "City in Shanghai, China"
 
11311
+msgid "Shanghai"
 
11312
+msgstr ""
 
11313
+
 
11314
+#. The capital of Singapore
 
11315
+#: ../data/Locations.xml.in.h:2491
 
11316
+msgctxt "City in Singapore"
 
11317
+msgid "Singapore"
 
11318
+msgstr ""
 
11319
+
 
11320
+#. A city in South Carolina in the United States
 
11321
+#: ../data/Locations.xml.in.h:2493
 
11322
+msgctxt "City in South Carolina, United States"
 
11323
+msgid "Anderson"
 
11324
+msgstr ""
 
11325
+
 
11326
+#. A city in South Carolina in the United States
 
11327
+#: ../data/Locations.xml.in.h:2495
 
11328
+msgctxt "City in South Carolina, United States"
 
11329
+msgid "Beaufort"
 
11330
+msgstr ""
 
11331
+
 
11332
+#. A city in South Carolina in the United States
 
11333
+#: ../data/Locations.xml.in.h:2497
 
11334
+msgctxt "City in South Carolina, United States"
 
11335
+msgid "Charleston"
 
11336
+msgstr ""
 
11337
+
 
11338
+#. A city in South Carolina in the United States
 
11339
+#: ../data/Locations.xml.in.h:2499
 
11340
+msgctxt "City in South Carolina, United States"
 
11341
+msgid "Columbia"
 
11342
+msgstr ""
 
11343
+
 
11344
+#. A city in South Carolina in the United States
 
11345
+#: ../data/Locations.xml.in.h:2501
 
11346
+msgctxt "City in South Carolina, United States"
 
11347
+msgid "Florence"
 
11348
+msgstr ""
 
11349
+
 
11350
+#. A city in South Carolina in the United States
 
11351
+#: ../data/Locations.xml.in.h:2503
 
11352
+msgctxt "City in South Carolina, United States"
 
11353
+msgid "Greenville"
 
11354
+msgstr ""
 
11355
+
 
11356
+#. A city in South Carolina in the United States
 
11357
+#: ../data/Locations.xml.in.h:2505
 
11358
+msgctxt "City in South Carolina, United States"
 
11359
+msgid "Greenwood"
 
11360
+msgstr ""
 
11361
+
 
11362
+#. A city in South Dakota in the United States
 
11363
+#: ../data/Locations.xml.in.h:2507
 
11364
+msgctxt "City in South Dakota, United States"
 
11365
+msgid "Aberdeen"
 
11366
+msgstr ""
 
11367
+
 
11368
+#. A city in South Dakota in the United States
 
11369
+#: ../data/Locations.xml.in.h:2509
 
11370
+msgctxt "City in South Dakota, United States"
 
11371
+msgid "Brookings"
 
11372
+msgstr ""
 
11373
+
 
11374
+#. A city in South Dakota in the United States
 
11375
+#: ../data/Locations.xml.in.h:2511
 
11376
+msgctxt "City in South Dakota, United States"
 
11377
+msgid "Buffalo"
 
11378
+msgstr ""
 
11379
+
 
11380
+#. A city in South Dakota in the United States
 
11381
+#: ../data/Locations.xml.in.h:2513
 
11382
+msgctxt "City in South Dakota, United States"
 
11383
+msgid "Watertown"
 
11384
+msgstr ""
 
11385
+
 
11386
+#. A city in South and South West England in the United
 
11387
+#. Kingdom
 
11388
+#.
 
11389
+#: ../data/Locations.xml.in.h:2517
 
11390
+msgctxt "City in South and South West England, United Kingdom"
 
11391
+msgid "Plymouth"
 
11392
+msgstr ""
 
11393
+
 
11394
+#. A city in Spain
 
11395
+#: ../data/Locations.xml.in.h:2519
 
11396
+msgctxt "City in Spain"
 
11397
+msgid "Barcelona"
 
11398
+msgstr ""
 
11399
+
 
11400
+#. A city in Spain
 
11401
+#: ../data/Locations.xml.in.h:2521
 
11402
+msgctxt "City in Spain"
 
11403
+msgid "Córdoba"
 
11404
+msgstr ""
 
11405
+
 
11406
+#. A city in Spain
 
11407
+#: ../data/Locations.xml.in.h:2523
 
11408
+msgctxt "City in Spain"
 
11409
+msgid "León"
 
11410
+msgstr ""
 
11411
+
 
11412
+#. A city in Spain
 
11413
+#: ../data/Locations.xml.in.h:2525
 
11414
+msgctxt "City in Spain"
 
11415
+msgid "Santiago"
 
11416
+msgstr ""
 
11417
+
 
11418
+#. A city in Spain
 
11419
+#: ../data/Locations.xml.in.h:2527
 
11420
+msgctxt "City in Spain"
 
11421
+msgid "Valencia"
 
11422
+msgstr ""
 
11423
+
 
11424
+#. A city in São Paulo in Brazil
 
11425
+#: ../data/Locations.xml.in.h:2529
 
11426
+msgctxt "City in São Paulo, Brazil"
 
11427
+msgid "São Paulo"
 
11428
+msgstr ""
 
11429
+
 
11430
+#. A city in Tasmania in Australia
 
11431
+#: ../data/Locations.xml.in.h:2531
 
11432
+msgctxt "City in Tasmania, Australia"
 
11433
+msgid "Hobart"
 
11434
+msgstr ""
 
11435
+
 
11436
+#. A city in Tennessee in the United States
 
11437
+#: ../data/Locations.xml.in.h:2533
 
11438
+msgctxt "City in Tennessee, United States"
 
11439
+msgid "Clarksville"
 
11440
+msgstr ""
 
11441
+
 
11442
+#. A city in Tennessee in the United States
 
11443
+#: ../data/Locations.xml.in.h:2535
 
11444
+msgctxt "City in Tennessee, United States"
 
11445
+msgid "Jackson"
 
11446
+msgstr ""
 
11447
+
 
11448
+#. A city in Tennessee in the United States
 
11449
+#: ../data/Locations.xml.in.h:2537
 
11450
+msgctxt "City in Tennessee, United States"
 
11451
+msgid "Knoxville"
 
11452
+msgstr ""
 
11453
+
 
11454
+#. A city in Texas in the United States
 
11455
+#: ../data/Locations.xml.in.h:2539
 
11456
+msgctxt "City in Texas, United States"
 
11457
+msgid "Alpine"
 
11458
+msgstr ""
 
11459
+
 
11460
+#. A city in Texas in the United States
 
11461
+#: ../data/Locations.xml.in.h:2541
 
11462
+msgctxt "City in Texas, United States"
 
11463
+msgid "Arlington"
 
11464
+msgstr ""
 
11465
+
 
11466
+#. A city in Texas in the United States
 
11467
+#: ../data/Locations.xml.in.h:2543
 
11468
+msgctxt "City in Texas, United States"
 
11469
+msgid "Austin"
 
11470
+msgstr ""
 
11471
+
 
11472
+#. A city in Texas in the United States
 
11473
+#: ../data/Locations.xml.in.h:2545
 
11474
+msgctxt "City in Texas, United States"
 
11475
+msgid "Caldwell"
 
11476
+msgstr ""
 
11477
+
 
11478
+#. A city in Texas in the United States
 
11479
+#: ../data/Locations.xml.in.h:2547
 
11480
+msgctxt "City in Texas, United States"
 
11481
+msgid "Clarksville"
 
11482
+msgstr ""
 
11483
+
 
11484
+#. A city in Texas in the United States
 
11485
+#: ../data/Locations.xml.in.h:2549
 
11486
+msgctxt "City in Texas, United States"
 
11487
+msgid "Decatur"
 
11488
+msgstr ""
 
11489
+
 
11490
+#. A city in Texas in the United States
 
11491
+#: ../data/Locations.xml.in.h:2551
 
11492
+msgctxt "City in Texas, United States"
 
11493
+msgid "Dryden"
 
11494
+msgstr ""
 
11495
+
 
11496
+#. A city in Texas in the United States
 
11497
+#: ../data/Locations.xml.in.h:2553
 
11498
+msgctxt "City in Texas, United States"
 
11499
+msgid "Gainesville"
 
11500
+msgstr ""
 
11501
+
 
11502
+#. A city in Texas in the United States
 
11503
+#: ../data/Locations.xml.in.h:2555
 
11504
+msgctxt "City in Texas, United States"
 
11505
+msgid "Georgetown"
 
11506
+msgstr ""
 
11507
+
 
11508
+#. A city in Texas in the United States
 
11509
+#: ../data/Locations.xml.in.h:2557
 
11510
+msgctxt "City in Texas, United States"
 
11511
+msgid "Greenville"
 
11512
+msgstr ""
 
11513
+
 
11514
+#. A city in Texas in the United States
 
11515
+#: ../data/Locations.xml.in.h:2559
 
11516
+msgctxt "City in Texas, United States"
 
11517
+msgid "Huntsville"
 
11518
+msgstr ""
 
11519
+
 
11520
+#. A city in Texas in the United States
 
11521
+#: ../data/Locations.xml.in.h:2561
 
11522
+msgctxt "City in Texas, United States"
 
11523
+msgid "Jacksonville"
 
11524
+msgstr ""
 
11525
+
 
11526
+#. A city in Texas in the United States
 
11527
+#: ../data/Locations.xml.in.h:2563
 
11528
+msgctxt "City in Texas, United States"
 
11529
+msgid "Jasper"
 
11530
+msgstr ""
 
11531
+
 
11532
+#. A city in Texas in the United States
 
11533
+#: ../data/Locations.xml.in.h:2565
 
11534
+msgctxt "City in Texas, United States"
 
11535
+msgid "La Grange"
 
11536
+msgstr ""
 
11537
+
 
11538
+#. A city in Texas in the United States
 
11539
+#: ../data/Locations.xml.in.h:2567
 
11540
+msgctxt "City in Texas, United States"
 
11541
+msgid "Lancaster"
 
11542
+msgstr ""
 
11543
+
 
11544
+#. A city in Texas in the United States
 
11545
+#: ../data/Locations.xml.in.h:2569
 
11546
+msgctxt "City in Texas, United States"
 
11547
+msgid "Mount Pleasant"
 
11548
+msgstr ""
 
11549
+
 
11550
+#. A city in Texas in the United States
 
11551
+#: ../data/Locations.xml.in.h:2571
 
11552
+msgctxt "City in Texas, United States"
 
11553
+msgid "Orange"
 
11554
+msgstr ""
 
11555
+
 
11556
+#. A city in Texas in the United States
 
11557
+#: ../data/Locations.xml.in.h:2573
 
11558
+msgctxt "City in Texas, United States"
 
11559
+msgid "Paris"
 
11560
+msgstr ""
 
11561
+
 
11562
+#. A city in Texas in the United States
 
11563
+#: ../data/Locations.xml.in.h:2575
 
11564
+msgctxt "City in Texas, United States"
 
11565
+msgid "Pasadena"
 
11566
+msgstr ""
 
11567
+
 
11568
+#. A city in Texas in the United States
 
11569
+#: ../data/Locations.xml.in.h:2577
 
11570
+msgctxt "City in Texas, United States"
 
11571
+msgid "Seminole"
 
11572
+msgstr ""
 
11573
+
 
11574
+#. A city in Texas in the United States
 
11575
+#: ../data/Locations.xml.in.h:2579
 
11576
+msgctxt "City in Texas, United States"
 
11577
+msgid "Sonora"
 
11578
+msgstr ""
 
11579
+
 
11580
+#. A city in Texas in the United States
 
11581
+#: ../data/Locations.xml.in.h:2581
 
11582
+msgctxt "City in Texas, United States"
 
11583
+msgid "Stephenville"
 
11584
+msgstr ""
 
11585
+
 
11586
+#. A city in Texas in the United States
 
11587
+#: ../data/Locations.xml.in.h:2583
 
11588
+msgctxt "City in Texas, United States"
 
11589
+msgid "Vernon"
 
11590
+msgstr ""
 
11591
+
 
11592
+#. A city in Texas in the United States
 
11593
+#: ../data/Locations.xml.in.h:2585
 
11594
+msgctxt "City in Texas, United States"
 
11595
+msgid "Victoria"
 
11596
+msgstr ""
 
11597
+
 
11598
+#. A city in Tianjin in China.
 
11599
+#. The name is also written "天津".
 
11600
+#.
 
11601
+#: ../data/Locations.xml.in.h:2589
 
11602
+msgctxt "City in Tianjin, China"
 
11603
+msgid "Tianjin"
 
11604
+msgstr ""
 
11605
+
 
11606
+#. The capital of Uruguay
 
11607
+#: ../data/Locations.xml.in.h:2591
 
11608
+msgctxt "City in Uruguay"
 
11609
+msgid "Montevideo"
 
11610
+msgstr ""
 
11611
+
 
11612
+#. A city in Utah in the United States
 
11613
+#: ../data/Locations.xml.in.h:2593
 
11614
+msgctxt "City in Utah, United States"
 
11615
+msgid "Santa Clara"
 
11616
+msgstr ""
 
11617
+
 
11618
+#. A city in Venezuela
 
11619
+#: ../data/Locations.xml.in.h:2595
 
11620
+msgctxt "City in Venezuela"
 
11621
+msgid "Barcelona"
 
11622
+msgstr ""
 
11623
+
 
11624
+#. A city in Venezuela
 
11625
+#: ../data/Locations.xml.in.h:2597
 
11626
+msgctxt "City in Venezuela"
 
11627
+msgid "Mérida"
 
11628
+msgstr ""
 
11629
+
 
11630
+#. A city in Venezuela
 
11631
+#: ../data/Locations.xml.in.h:2599
 
11632
+msgctxt "City in Venezuela"
 
11633
+msgid "San Fernando"
 
11634
+msgstr ""
 
11635
+
 
11636
+#. A city in Venezuela
 
11637
+#: ../data/Locations.xml.in.h:2601
 
11638
+msgctxt "City in Venezuela"
 
11639
+msgid "Valencia"
 
11640
+msgstr ""
 
11641
+
 
11642
+#. A city in Veracruz in Mexico
 
11643
+#: ../data/Locations.xml.in.h:2603
 
11644
+msgctxt "City in Veracruz, Mexico"
 
11645
+msgid "Veracruz"
 
11646
+msgstr ""
 
11647
+
 
11648
+#. A city in Vermont in the United States
 
11649
+#: ../data/Locations.xml.in.h:2605
 
11650
+msgctxt "City in Vermont, United States"
 
11651
+msgid "Burlington"
 
11652
+msgstr ""
 
11653
+
 
11654
+#. A city in Vermont in the United States
 
11655
+#: ../data/Locations.xml.in.h:2607
 
11656
+msgctxt "City in Vermont, United States"
 
11657
+msgid "Springfield"
 
11658
+msgstr ""
 
11659
+
 
11660
+#. A city in Victoria in Australia
 
11661
+#: ../data/Locations.xml.in.h:2609
 
11662
+msgctxt "City in Victoria, Australia"
 
11663
+msgid "Melbourne"
 
11664
+msgstr ""
 
11665
+
 
11666
+#. A city in Virginia in the United States
 
11667
+#: ../data/Locations.xml.in.h:2611
 
11668
+msgctxt "City in Virginia, United States"
 
11669
+msgid "Alexandria"
 
11670
+msgstr ""
 
11671
+
 
11672
+#. A city in Virginia in the United States
 
11673
+#: ../data/Locations.xml.in.h:2613
 
11674
+msgctxt "City in Virginia, United States"
 
11675
+msgid "Ashland"
 
11676
+msgstr ""
 
11677
+
 
11678
+#. A city in Virginia in the United States
 
11679
+#: ../data/Locations.xml.in.h:2615
 
11680
+msgctxt "City in Virginia, United States"
 
11681
+msgid "Danville"
 
11682
+msgstr ""
 
11683
+
 
11684
+#. A city in Virginia in the United States
 
11685
+#: ../data/Locations.xml.in.h:2617
 
11686
+msgctxt "City in Virginia, United States"
 
11687
+msgid "Dublin"
 
11688
+msgstr ""
 
11689
+
 
11690
+#. A city in Virginia in the United States
 
11691
+#: ../data/Locations.xml.in.h:2619
 
11692
+msgctxt "City in Virginia, United States"
 
11693
+msgid "Emporia"
 
11694
+msgstr ""
 
11695
+
 
11696
+#. A city in Virginia in the United States
 
11697
+#: ../data/Locations.xml.in.h:2621
 
11698
+msgctxt "City in Virginia, United States"
 
11699
+msgid "Franklin"
 
11700
+msgstr ""
 
11701
+
 
11702
+#. A city in Virginia in the United States
 
11703
+#: ../data/Locations.xml.in.h:2623
 
11704
+msgctxt "City in Virginia, United States"
 
11705
+msgid "Hot Springs"
 
11706
+msgstr ""
 
11707
+
 
11708
+#. A city in Virginia in the United States
 
11709
+#: ../data/Locations.xml.in.h:2625
 
11710
+msgctxt "City in Virginia, United States"
 
11711
+msgid "Leesburg"
 
11712
+msgstr ""
 
11713
+
 
11714
+#. A city in Virginia in the United States
 
11715
+#: ../data/Locations.xml.in.h:2627
 
11716
+msgctxt "City in Virginia, United States"
 
11717
+msgid "Marion"
 
11718
+msgstr ""
 
11719
+
 
11720
+#. A city in Virginia in the United States
 
11721
+#: ../data/Locations.xml.in.h:2629
 
11722
+msgctxt "City in Virginia, United States"
 
11723
+msgid "Norfolk"
 
11724
+msgstr ""
 
11725
+
 
11726
+#. A city in Virginia in the United States
 
11727
+#: ../data/Locations.xml.in.h:2631
 
11728
+msgctxt "City in Virginia, United States"
 
11729
+msgid "Orange"
 
11730
+msgstr ""
 
11731
+
 
11732
+#. A city in Virginia in the United States
 
11733
+#: ../data/Locations.xml.in.h:2633
 
11734
+msgctxt "City in Virginia, United States"
 
11735
+msgid "Petersburg"
 
11736
+msgstr ""
 
11737
+
 
11738
+#. A city in Virginia in the United States
 
11739
+#: ../data/Locations.xml.in.h:2635
 
11740
+msgctxt "City in Virginia, United States"
 
11741
+msgid "Portsmouth"
 
11742
+msgstr ""
 
11743
+
 
11744
+#. A city in Virginia in the United States
 
11745
+#: ../data/Locations.xml.in.h:2637
 
11746
+msgctxt "City in Virginia, United States"
 
11747
+msgid "Richmond"
 
11748
+msgstr ""
 
11749
+
 
11750
+#. A city in Wales in the United Kingdom.
 
11751
+#. The local name in Welsh is "Caerdydd".
 
11752
+#.
 
11753
+#: ../data/Locations.xml.in.h:2641
 
11754
+msgctxt "City in Wales, United Kingdom"
 
11755
+msgid "Cardiff"
 
11756
+msgstr ""
 
11757
+
 
11758
+#. A city in Washington in the United States
 
11759
+#: ../data/Locations.xml.in.h:2643
 
11760
+msgctxt "City in Washington, United States"
 
11761
+msgid "Arlington"
 
11762
+msgstr ""
 
11763
+
 
11764
+#. A city in Washington in the United States
 
11765
+#: ../data/Locations.xml.in.h:2645
 
11766
+msgctxt "City in Washington, United States"
 
11767
+msgid "Burlington"
 
11768
+msgstr ""
 
11769
+
 
11770
+#. A city in Washington in the United States
 
11771
+#: ../data/Locations.xml.in.h:2647
 
11772
+msgctxt "City in Washington, United States"
 
11773
+msgid "Hanford"
 
11774
+msgstr ""
 
11775
+
 
11776
+#. A city in Washington in the United States
 
11777
+#: ../data/Locations.xml.in.h:2649
 
11778
+msgctxt "City in Washington, United States"
 
11779
+msgid "Vancouver"
 
11780
+msgstr ""
 
11781
+
 
11782
+#. A city in West Virginia in the United States
 
11783
+#: ../data/Locations.xml.in.h:2651
 
11784
+msgctxt "City in West Virginia, United States"
 
11785
+msgid "Charleston"
 
11786
+msgstr ""
 
11787
+
 
11788
+#. A city in West Virginia in the United States
 
11789
+#: ../data/Locations.xml.in.h:2653
 
11790
+msgctxt "City in West Virginia, United States"
 
11791
+msgid "Petersburg"
 
11792
+msgstr ""
 
11793
+
 
11794
+#. A city in West Virginia in the United States
 
11795
+#: ../data/Locations.xml.in.h:2655
 
11796
+msgctxt "City in West Virginia, United States"
 
11797
+msgid "Sutton"
 
11798
+msgstr ""
 
11799
+
 
11800
+#. A city in Wisconsin in the United States
 
11801
+#: ../data/Locations.xml.in.h:2657
 
11802
+msgctxt "City in Wisconsin, United States"
 
11803
+msgid "Appleton"
 
11804
+msgstr ""
 
11805
+
 
11806
+#. A city in Wisconsin in the United States
 
11807
+#: ../data/Locations.xml.in.h:2659
 
11808
+msgctxt "City in Wisconsin, United States"
 
11809
+msgid "Ashland"
 
11810
+msgstr ""
 
11811
+
 
11812
+#. A city in Wisconsin in the United States
 
11813
+#: ../data/Locations.xml.in.h:2661
 
11814
+msgctxt "City in Wisconsin, United States"
 
11815
+msgid "Burlington"
 
11816
+msgstr ""
 
11817
+
 
11818
+#. A city in Wisconsin in the United States
 
11819
+#: ../data/Locations.xml.in.h:2663
 
11820
+msgctxt "City in Wisconsin, United States"
 
11821
+msgid "Hayward"
 
11822
+msgstr ""
 
11823
+
 
11824
+#. A city in Wisconsin in the United States
 
11825
+#: ../data/Locations.xml.in.h:2665
 
11826
+msgctxt "City in Wisconsin, United States"
 
11827
+msgid "Juneau"
 
11828
+msgstr ""
 
11829
+
 
11830
+#. A city in Wisconsin in the United States
 
11831
+#: ../data/Locations.xml.in.h:2667
 
11832
+msgctxt "City in Wisconsin, United States"
 
11833
+msgid "Madison"
 
11834
+msgstr ""
 
11835
+
 
11836
+#. A city in Wisconsin in the United States
 
11837
+#: ../data/Locations.xml.in.h:2669
 
11838
+msgctxt "City in Wisconsin, United States"
 
11839
+msgid "Medford"
 
11840
+msgstr ""
 
11841
+
 
11842
+#. A city in Wisconsin in the United States
 
11843
+#: ../data/Locations.xml.in.h:2671
 
11844
+msgctxt "City in Wisconsin, United States"
 
11845
+msgid "Monroe"
 
11846
+msgstr ""
 
11847
+
 
11848
+#. A city in Wisconsin in the United States
 
11849
+#: ../data/Locations.xml.in.h:2673
 
11850
+msgctxt "City in Wisconsin, United States"
 
11851
+msgid "Sparta"
 
11852
+msgstr ""
 
11853
+
 
11854
+#. A city in Wisconsin in the United States
 
11855
+#: ../data/Locations.xml.in.h:2675
 
11856
+msgctxt "City in Wisconsin, United States"
 
11857
+msgid "Watertown"
 
11858
+msgstr ""
 
11859
+
 
11860
+#. A city in Wyoming in the United States
 
11861
+#: ../data/Locations.xml.in.h:2677
 
11862
+msgctxt "City in Wyoming, United States"
 
11863
+msgid "Bordeaux"
 
11864
+msgstr ""
 
11865
+
 
11866
+#. A city in Wyoming in the United States
 
11867
+#: ../data/Locations.xml.in.h:2679
 
11868
+msgctxt "City in Wyoming, United States"
 
11869
+msgid "Buffalo"
 
11870
+msgstr ""
 
11871
+
 
11872
+#. A city in Wyoming in the United States
 
11873
+#: ../data/Locations.xml.in.h:2681
 
11874
+msgctxt "City in Wyoming, United States"
 
11875
+msgid "Douglas"
 
11876
+msgstr ""
 
11877
+
 
11878
+#. A city in Wyoming in the United States
 
11879
+#: ../data/Locations.xml.in.h:2683
 
11880
+msgctxt "City in Wyoming, United States"
 
11881
+msgid "Jackson"
 
11882
+msgstr ""
 
11883
+
 
11884
+#. A city in Wyoming in the United States
 
11885
+#: ../data/Locations.xml.in.h:2685
 
11886
+msgctxt "City in Wyoming, United States"
 
11887
+msgid "Wyoming"
 
11888
+msgstr ""
 
11889
+
 
11890
+#. A city in Yucatán in Mexico
 
11891
+#: ../data/Locations.xml.in.h:2687
 
11892
+msgctxt "City in Yucatán, Mexico"
 
11893
+msgid "Mérida"
 
11894
+msgstr ""
 
11895
+
 
11896
+#. A city in Zacatecas in Mexico
 
11897
+#: ../data/Locations.xml.in.h:2689
 
11898
+msgctxt "City in Zacatecas, Mexico"
 
11899
+msgid "Zacatecas"
 
11900
+msgstr ""
 
11901
+
 
11902
+#. A city in Venezuela
 
11903
+#: ../data/Locations.xml.in.h:2691
 
11904
+msgid "Ciudad Bolívar"
 
11905
+msgstr ""
 
11906
+
 
11907
+#. A city in Honduras
 
11908
+#: ../data/Locations.xml.in.h:2693
 
11909
+msgid "Ciudad Choluteca"
 
11910
+msgstr ""
 
11911
+
 
11912
+#. A city in México in Mexico.
 
11913
+#. One of several cities in Mexico called "Juárez".
 
11914
+#.
 
11915
+#: ../data/Locations.xml.in.h:2697
 
11916
+msgid "Ciudad Juárez"
 
11917
+msgstr ""
 
11918
+
 
11919
+#. A city in Sonora in Mexico
 
11920
+#: ../data/Locations.xml.in.h:2699
 
11921
+msgid "Ciudad Obregón"
 
11922
+msgstr ""
 
11923
+
 
11924
+#. A city in Tamaulipas in Mexico
 
11925
+#: ../data/Locations.xml.in.h:2701
 
11926
+msgid "Ciudad Victoria"
 
11927
+msgstr ""
 
11928
+
 
11929
+#. A city in Oklahoma in the United States
 
11930
+#: ../data/Locations.xml.in.h:2703
 
11931
+msgid "Claremore"
 
11932
+msgstr ""
 
11933
+
 
11934
+#. A city in Alberta in Canada
 
11935
+#: ../data/Locations.xml.in.h:2705
 
11936
+msgid "Claresholm"
 
11937
+msgstr ""
 
11938
+
 
11939
+#. A city in Iowa in the United States
 
11940
+#: ../data/Locations.xml.in.h:2707
 
11941
+msgid "Clarinda"
 
11942
+msgstr ""
 
11943
+
 
11944
+#. A city in Iowa in the United States
 
11945
+#: ../data/Locations.xml.in.h:2709
 
11946
+msgid "Clarion"
 
11947
+msgstr ""
 
11948
+
 
11949
+#. A city in West Virginia in the United States
 
11950
+#: ../data/Locations.xml.in.h:2711
 
11951
+msgid "Clarksburg"
 
11952
+msgstr ""
 
11953
+
 
11954
+#. A city in New Mexico in the United States
 
11955
+#: ../data/Locations.xml.in.h:2713
 
11956
+msgid "Clayton"
 
11957
+msgstr ""
 
11958
+
 
11959
+#. A city in Pennsylvania in the United States
 
11960
+#: ../data/Locations.xml.in.h:2715
 
11961
+msgid "Clearfield"
 
11962
+msgstr ""
 
11963
+
 
11964
+#. A city in Florida in the United States
 
11965
+#: ../data/Locations.xml.in.h:2717
 
11966
+msgid "Clearwater"
 
11967
+msgstr ""
 
11968
+
 
11969
+#. A city in South Carolina in the United States
 
11970
+#: ../data/Locations.xml.in.h:2719
 
11971
+msgid "Clemson"
 
11972
+msgstr ""
 
11973
+
 
11974
+#. A city in France
 
11975
+#: ../data/Locations.xml.in.h:2721
 
11976
+msgid "Clermont-Ferrand"
 
11977
+msgstr ""
 
11978
+
 
11979
+#. A city in Ohio in the United States
 
11980
+#: ../data/Locations.xml.in.h:2723
 
11981
+msgid "Cleveland"
 
11982
+msgstr ""
 
11983
+
 
11984
+#. A city in New Mexico in the United States
 
11985
+#: ../data/Locations.xml.in.h:2725
 
11986
+msgid "Clines Corners"
 
11987
+msgstr ""
 
11988
+
 
11989
+#. A city in Wisconsin in the United States
 
11990
+#: ../data/Locations.xml.in.h:2727
 
11991
+msgid "Clintonville"
 
11992
+msgstr ""
 
11993
+
 
11994
+#. A city in Minnesota in the United States
 
11995
+#: ../data/Locations.xml.in.h:2729
 
11996
+msgid "Cloquet"
 
11997
+msgstr ""
 
11998
+
 
11999
+#. A city in New Mexico in the United States
 
12000
+#: ../data/Locations.xml.in.h:2731
 
12001
+msgid "Clovis"
 
12002
+msgstr ""
 
12003
+
 
12004
+#. A city in Romania
 
12005
+#: ../data/Locations.xml.in.h:2733
 
12006
+msgid "Cluj-Napoca"
 
12007
+msgstr ""
 
12008
+
 
12009
+#. A city in Nunavut in Canada
 
12010
+#: ../data/Locations.xml.in.h:2735
 
12011
+msgid "Clyde River"
 
12012
+msgstr ""
 
12013
+
 
12014
+#. A state/province/territory in Mexico
 
12015
+#: ../data/Locations.xml.in.h:2737
 
12016
+msgid "Coahuila"
 
12017
+msgstr ""
 
12018
+
 
12019
+#. A city in Bolivia
 
12020
+#: ../data/Locations.xml.in.h:2739
 
12021
+msgid "Cobija"
 
12022
+msgstr ""
 
12023
+
 
12024
+#. A city in Ontario in Canada
 
12025
+#: ../data/Locations.xml.in.h:2741
 
12026
+msgid "Cobourg"
 
12027
+msgstr ""
 
12028
+
 
12029
+#. A city in Bolivia
 
12030
+#: ../data/Locations.xml.in.h:2743
 
12031
+msgid "Cochabamba"
 
12032
+msgstr ""
 
12033
+
 
12034
+#. A city in Florida in the United States
 
12035
+#: ../data/Locations.xml.in.h:2745
 
12036
+msgid "Cocoa"
 
12037
+msgstr ""
 
12038
+
 
12039
+#. CC - Cocos (Keeling) Islands, a territory of Australia in
 
12040
+#. the Indian Ocean. The "(Keeling)" is to distinguish them
 
12041
+#. from other "Cocos Island"s, and is part of the official name.
 
12042
+#.
 
12043
+#: ../data/Locations.xml.in.h:2750
 
12044
+msgid "Cocos (Keeling) Islands"
 
12045
+msgstr ""
 
12046
+
 
12047
+#. A city in Wyoming in the United States
 
12048
+#: ../data/Locations.xml.in.h:2752
 
12049
+msgid "Cody"
 
12050
+msgstr ""
 
12051
+
 
12052
+#. A city in Idaho in the United States
 
12053
+#: ../data/Locations.xml.in.h:2754
 
12054
+msgid "Coeur d'Alene"
 
12055
+msgstr ""
 
12056
+
 
12057
+#. A city in Kansas in the United States
 
12058
+#: ../data/Locations.xml.in.h:2756
 
12059
+msgid "Coffeyville"
 
12060
+msgstr ""
 
12061
+
 
12062
+#. A city in France
 
12063
+#: ../data/Locations.xml.in.h:2758
 
12064
+msgid "Cognac"
 
12065
+msgstr ""
 
12066
+
 
12067
+#. A city in India.
 
12068
+#. The local name in Tamil is "கோயம்புத்தூர்".
 
12069
+#.
 
12070
+#: ../data/Locations.xml.in.h:2762
 
12071
+msgid "Coimbatore"
 
12072
+msgstr ""
 
12073
+
 
12074
+#. A city in Alaska in the United States
 
12075
+#: ../data/Locations.xml.in.h:2764
 
12076
+msgid "Cold Bay"
 
12077
+msgstr ""
 
12078
+
 
12079
+#. A city in Alberta in Canada
 
12080
+#: ../data/Locations.xml.in.h:2766
 
12081
+msgid "Cold Lake"
 
12082
+msgstr ""
 
12083
+
 
12084
+#. A city in Michigan in the United States
 
12085
+#: ../data/Locations.xml.in.h:2768
 
12086
+msgid "Coldwater"
 
12087
+msgstr ""
 
12088
+
 
12089
+#. A city in Alberta in Canada
 
12090
+#: ../data/Locations.xml.in.h:2770
 
12091
+msgid "Coleman"
 
12092
+msgstr ""
 
12093
+
 
12094
+#. A city in Texas in the United States
 
12095
+#: ../data/Locations.xml.in.h:2772
 
12096
+msgid "College Station"
 
12097
+msgstr ""
 
12098
+
 
12099
+#. A city in Ontario in Canada
 
12100
+#: ../data/Locations.xml.in.h:2774
 
12101
+msgid "Collingwood"
 
12102
+msgstr ""
 
12103
+
 
12104
+#. A city in France
 
12105
+#: ../data/Locations.xml.in.h:2776
 
12106
+msgid "Colmar"
 
12107
+msgstr ""
 
12108
+
 
12109
+#. A city in Spain
 
12110
+#: ../data/Locations.xml.in.h:2778
 
12111
+msgid "Colmenar Viejo"
 
12112
+msgstr ""
 
12113
+
 
12114
+#. CO - Colombia
 
12115
+#: ../data/Locations.xml.in.h:2780
 
12116
+msgid "Colombia"
 
12117
+msgstr ""
 
12118
+
 
12119
+#. The capital of Sri Lanka
 
12120
+#: ../data/Locations.xml.in.h:2782
 
12121
+msgid "Colombo"
 
12122
+msgstr ""
 
12123
+
 
12124
+#. A city in Uruguay
 
12125
+#: ../data/Locations.xml.in.h:2784
 
12126
+msgid "Colonia"
 
12127
+msgstr ""
 
12128
+
 
12129
+#. A city in Paraguay
 
12130
+#: ../data/Locations.xml.in.h:2786
 
12131
+msgid "Colonia Félix de Azara"
 
12132
+msgstr ""
 
12133
+
 
12134
+#. A state/province/territory in United States
 
12135
+#: ../data/Locations.xml.in.h:2788
 
12136
+msgid "Colorado"
 
12137
+msgstr ""
 
12138
+
 
12139
+#. A city in Colorado in the United States
 
12140
+#: ../data/Locations.xml.in.h:2790
 
12141
+msgid "Colorado Springs"
 
12142
+msgstr ""
 
12143
+
 
12144
+#. A city in El Salvador
 
12145
+#: ../data/Locations.xml.in.h:2792
 
12146
+msgid "Comalapa"
 
12147
+msgstr ""
 
12148
+
 
12149
+#. A city in Honduras
 
12150
+#: ../data/Locations.xml.in.h:2794
 
12151
+msgid "Comayagua"
 
12152
+msgstr ""
 
12153
+
 
12154
+#. A city in Argentina
 
12155
+#: ../data/Locations.xml.in.h:2796
 
12156
+msgid "Comodoro Rivadavia"
 
12157
+msgstr ""
 
12158
+
 
12159
+#. KM - Comoros
 
12160
+#: ../data/Locations.xml.in.h:2798
 
12161
+msgid "Comoros"
 
12162
+msgstr ""
 
12163
+
 
12164
+#. A city in British Columbia in Canada
 
12165
+#: ../data/Locations.xml.in.h:2800
 
12166
+msgid "Comox"
 
12167
+msgstr ""
 
12168
+
 
12169
+#. The capital of Guinea
 
12170
+#: ../data/Locations.xml.in.h:2802
 
12171
+msgid "Conakry"
 
12172
+msgstr ""
 
12173
+
 
12174
+#. A city in Pará in Brazil
 
12175
+#: ../data/Locations.xml.in.h:2804
 
12176
+msgid "Conceição do Araguaia"
 
12177
+msgstr ""
 
12178
+
 
12179
+#. A city in Kansas in the United States
 
12180
+#: ../data/Locations.xml.in.h:2806
 
12181
+msgid "Concordia"
 
12182
+msgstr ""
 
12183
+
 
12184
+#. CD - Democratic Republic of the Congo
 
12185
+#: ../data/Locations.xml.in.h:2808
 
12186
+msgid "Congo, Democratic Republic of the"
 
12187
+msgstr ""
 
12188
+
 
12189
+#. CG - Republic of the Congo. The official ISO 3166 short
 
12190
+#. English name is simply "Congo"; we use the long name to
 
12191
+#. better distinguish it from CD (The Democratic Republic of
 
12192
+#. the Congo).
 
12193
+#.
 
12194
+#: ../data/Locations.xml.in.h:2814
 
12195
+msgid "Congo, Republic of the"
 
12196
+msgstr ""
 
12197
+
 
12198
+#. A city in North East England in the United Kingdom
 
12199
+#: ../data/Locations.xml.in.h:2816
 
12200
+msgid "Coningsby"
 
12201
+msgstr ""
 
12202
+
 
12203
+#. A state/province/territory in United States
 
12204
+#: ../data/Locations.xml.in.h:2818
 
12205
+msgid "Connecticut"
 
12206
+msgstr ""
 
12207
+
 
12208
+#. A city in Texas in the United States
 
12209
+#: ../data/Locations.xml.in.h:2820
 
12210
+msgid "Conroe"
 
12211
+msgstr ""
 
12212
+
 
12213
+#. A city in Algeria
 
12214
+#: ../data/Locations.xml.in.h:2822
 
12215
+msgid "Constantine"
 
12216
+msgstr ""
 
12217
+
 
12218
+#. A city in Minnesota in the United States
 
12219
+#: ../data/Locations.xml.in.h:2824
 
12220
+msgid "Cook"
 
12221
+msgstr ""
 
12222
+
 
12223
+#. CK - Cook Islands
 
12224
+#: ../data/Locations.xml.in.h:2826
 
12225
+msgid "Cook Islands"
 
12226
+msgstr ""
 
12227
+
 
12228
+#. A city in Queensland in Australia
 
12229
+#: ../data/Locations.xml.in.h:2828
 
12230
+msgid "Coolangatta"
 
12231
+msgstr ""
 
12232
+
 
12233
+#. The capital of Denmark.
 
12234
+#. "Copenhagen" is the traditional English name.
 
12235
+#. The local name is "København".
 
12236
+#.
 
12237
+#: ../data/Locations.xml.in.h:2833
 
12238
+msgid "Copenhagen"
 
12239
+msgstr ""
 
12240
+
 
12241
+#. A city in Ontario in Canada
 
12242
+#: ../data/Locations.xml.in.h:2835
 
12243
+msgid "Coppell"
 
12244
+msgstr ""
 
12245
+
 
12246
+#. A city in Michigan in the United States
 
12247
+#: ../data/Locations.xml.in.h:2837
 
12248
+msgid "Copper Harbor"
 
12249
+msgstr ""
 
12250
+
 
12251
+#. A city in Nunavut in Canada
 
12252
+#: ../data/Locations.xml.in.h:2839
 
12253
+msgid "Coral Harbour"
 
12254
+msgstr ""
 
12255
+
 
12256
+#. A city in Spain
 
12257
+#: ../data/Locations.xml.in.h:2841
 
12258
+msgid "Corcovados"
 
12259
+msgstr ""
 
12260
+
 
12261
+#. A city in Alaska in the United States
 
12262
+#: ../data/Locations.xml.in.h:2843
 
12263
+msgid "Cordova"
 
12264
+msgstr ""
 
12265
+
 
12266
+#. A city in Ireland.
 
12267
+#. The local name in Irish is "Corcaigh".
 
12268
+#.
 
12269
+#: ../data/Locations.xml.in.h:2847
 
12270
+msgid "Cork"
 
12271
+msgstr ""
 
12272
+
 
12273
+#. A city in Turkey
 
12274
+#: ../data/Locations.xml.in.h:2849
 
12275
+msgid "Corlu"
 
12276
+msgstr ""
 
12277
+
 
12278
+#. A city in Venezuela
 
12279
+#: ../data/Locations.xml.in.h:2851
 
12280
+msgid "Coro"
 
12281
+msgstr ""
 
12282
+
 
12283
+#. A city in Alberta in Canada
 
12284
+#: ../data/Locations.xml.in.h:2853
 
12285
+msgid "Coronation"
 
12286
+msgstr ""
 
12287
+
 
12288
+#. A city in Texas in the United States
 
12289
+#: ../data/Locations.xml.in.h:2855
 
12290
+msgid "Corpus Christi"
 
12291
+msgstr ""
 
12292
+
 
12293
+#. A city in Argentina
 
12294
+#: ../data/Locations.xml.in.h:2857
 
12295
+msgid "Corrientes"
 
12296
+msgstr ""
 
12297
+
 
12298
+#. A city in Texas in the United States
 
12299
+#: ../data/Locations.xml.in.h:2859
 
12300
+msgid "Corsicana"
 
12301
+msgstr ""
 
12302
+
 
12303
+#. A city in Colorado in the United States
 
12304
+#: ../data/Locations.xml.in.h:2861
 
12305
+msgid "Cortez"
 
12306
+msgstr ""
 
12307
+
 
12308
+#. A city in Mato Grosso do Sul in Brazil
 
12309
+#: ../data/Locations.xml.in.h:2863
 
12310
+msgid "Corumbá"
 
12311
+msgstr ""
 
12312
+
 
12313
+#. A city in Oregon in the United States
 
12314
+#: ../data/Locations.xml.in.h:2865
 
12315
+msgid "Corvallis"
 
12316
+msgstr ""
 
12317
+
 
12318
+#. A city in California in the United States
 
12319
+#: ../data/Locations.xml.in.h:2867
 
12320
+msgid "Costa Mesa"
 
12321
+msgstr ""
 
12322
+
 
12323
+#. CR - Costa Rica
 
12324
+#: ../data/Locations.xml.in.h:2869
 
12325
+msgid "Costa Rica"
 
12326
+msgstr ""
 
12327
+
 
12328
+#. A city in Benin
 
12329
+#: ../data/Locations.xml.in.h:2871
 
12330
+msgid "Cotonou"
 
12331
+msgstr ""
 
12332
+
 
12333
+#. A city in Midlands in the United Kingdom
 
12334
+#: ../data/Locations.xml.in.h:2873
 
12335
+msgid "Cottesmore"
 
12336
+msgstr ""
 
12337
+
 
12338
+#. A city in Texas in the United States
 
12339
+#: ../data/Locations.xml.in.h:2875
 
12340
+msgid "Cotulla"
 
12341
+msgstr ""
 
12342
+
 
12343
+#. A city in Iowa in the United States
 
12344
+#: ../data/Locations.xml.in.h:2877
 
12345
+msgid "Council Bluffs"
 
12346
+msgstr ""
 
12347
+
 
12348
+#. AQ - Antarctica
 
12349
+#: ../data/Locations.xml.in.h:2879
 
12350
+msgctxt "Country"
 
12351
+msgid "Antarctica"
 
12352
+msgstr ""
 
12353
+
 
12354
+#. DJ - Djibouti
 
12355
+#: ../data/Locations.xml.in.h:2881
 
12356
+msgctxt "Country"
 
12357
+msgid "Djibouti"
 
12358
+msgstr ""
 
12359
+
 
12360
+#. GE - Georgia (the country, not the US state)
 
12361
+#: ../data/Locations.xml.in.h:2883
 
12362
+msgctxt "Country"
 
12363
+msgid "Georgia"
 
12364
+msgstr ""
 
12365
+
 
12366
+#. GI - Gibraltar, a British overseas territory on the southern
 
12367
+#. tip of Spain.
 
12368
+#.
 
12369
+#: ../data/Locations.xml.in.h:2887
 
12370
+msgctxt "Country"
 
12371
+msgid "Gibraltar"
 
12372
+msgstr ""
 
12373
+
 
12374
+#. GT - Guatemala
 
12375
+#: ../data/Locations.xml.in.h:2889
 
12376
+msgctxt "Country"
 
12377
+msgid "Guatemala"
 
12378
+msgstr ""
 
12379
+
 
12380
+#. JO - Jordan
 
12381
+#: ../data/Locations.xml.in.h:2891
 
12382
+msgctxt "Country"
 
12383
+msgid "Jordan"
 
12384
+msgstr ""
 
12385
+
 
12386
+#. KW - Kuwait
 
12387
+#: ../data/Locations.xml.in.h:2893
 
12388
+msgctxt "Country"
 
12389
+msgid "Kuwait"
 
12390
+msgstr ""
 
12391
+
 
12392
+#. LB - Lebanon
 
12393
+#: ../data/Locations.xml.in.h:2895
 
12394
+msgctxt "Country"
 
12395
+msgid "Lebanon"
 
12396
+msgstr ""
 
12397
+
 
12398
+#. LR - Liberia
 
12399
+#: ../data/Locations.xml.in.h:2897
 
12400
+msgctxt "Country"
 
12401
+msgid "Liberia"
 
12402
+msgstr ""
 
12403
+
 
12404
+#. LU - Luxembourg
 
12405
+#: ../data/Locations.xml.in.h:2899
 
12406
+msgctxt "Country"
 
12407
+msgid "Luxembourg"
 
12408
+msgstr ""
 
12409
+
 
12410
+#. MO - Macao, aka "Macao Special Administrative Region of
 
12411
+#. China". (The spellings "Macao" and "Macau" are both widely
 
12412
+#. used. The "u" spelling is currently slightly more popular in
 
12413
+#. English.)
 
12414
+#.
 
12415
+#: ../data/Locations.xml.in.h:2905
 
12416
+msgctxt "Country"
 
12417
+msgid "Macau"
 
12418
+msgstr ""
 
12419
+
 
12420
+#. MT - Malta
 
12421
+#: ../data/Locations.xml.in.h:2907
 
12422
+msgctxt "Country"
 
12423
+msgid "Malta"
 
12424
+msgstr ""
 
12425
+
 
12426
+#. MC - Monaco
 
12427
+#: ../data/Locations.xml.in.h:2909
 
12428
+msgctxt "Country"
 
12429
+msgid "Monaco"
 
12430
+msgstr ""
 
12431
+
 
12432
+#. PE - Peru
 
12433
+#: ../data/Locations.xml.in.h:2911
 
12434
+msgctxt "Country"
 
12435
+msgid "Peru"
 
12436
+msgstr ""
 
12437
+
 
12438
+#. SM - San Marino
 
12439
+#: ../data/Locations.xml.in.h:2913
 
12440
+msgctxt "Country"
 
12441
+msgid "San Marino"
 
12442
+msgstr ""
 
12443
+
 
12444
+#. SG - Singapore
 
12445
+#: ../data/Locations.xml.in.h:2915
 
12446
+msgctxt "Country"
 
12447
+msgid "Singapore"
 
12448
+msgstr ""
 
12449
+
 
12450
+#. A city in Midlands in the United Kingdom
 
12451
+#: ../data/Locations.xml.in.h:2917
 
12452
+msgid "Coventry"
 
12453
+msgstr ""
 
12454
+
 
12455
+#. A city in Quintana Roo in Mexico
 
12456
+#: ../data/Locations.xml.in.h:2919
 
12457
+msgid "Cozumel"
 
12458
+msgstr ""
 
12459
+
 
12460
+#. A city in Colorado in the United States
 
12461
+#: ../data/Locations.xml.in.h:2921
 
12462
+msgid "Craig"
 
12463
+msgstr ""
 
12464
+
 
12465
+#. A city in Romania
 
12466
+#: ../data/Locations.xml.in.h:2923
 
12467
+msgid "Craiova"
 
12468
+msgstr ""
 
12469
+
 
12470
+#. A city in British Columbia in Canada
 
12471
+#: ../data/Locations.xml.in.h:2925
 
12472
+msgid "Cranbrook"
 
12473
+msgstr ""
 
12474
+
 
12475
+#. A city in Minnesota in the United States
 
12476
+#: ../data/Locations.xml.in.h:2927
 
12477
+msgid "Crane Lake"
 
12478
+msgstr ""
 
12479
+
 
12480
+#. A city in Midlands in the United Kingdom
 
12481
+#: ../data/Locations.xml.in.h:2929
 
12482
+msgid "Cranfield"
 
12483
+msgstr ""
 
12484
+
 
12485
+#. A city in North East England in the United Kingdom
 
12486
+#: ../data/Locations.xml.in.h:2931
 
12487
+msgid "Cranwell"
 
12488
+msgstr ""
 
12489
+
 
12490
+#. A city in France
 
12491
+#: ../data/Locations.xml.in.h:2933
 
12492
+msgid "Creil"
 
12493
+msgstr ""
 
12494
+
 
12495
+#. A city in California in the United States
 
12496
+#: ../data/Locations.xml.in.h:2935
 
12497
+msgid "Crescent City"
 
12498
+msgstr ""
 
12499
+
 
12500
+#. A city in Florida in the United States
 
12501
+#: ../data/Locations.xml.in.h:2937
 
12502
+msgid "Crestview"
 
12503
+msgstr ""
 
12504
+
 
12505
+#. HR - Croatia
 
12506
+#: ../data/Locations.xml.in.h:2939
 
12507
+msgid "Croatia"
 
12508
+msgstr ""
 
12509
+
 
12510
+#. A city in Texas in the United States
 
12511
+#: ../data/Locations.xml.in.h:2941
 
12512
+msgid "Crockett"
 
12513
+msgstr ""
 
12514
+
 
12515
+#. A city in Minnesota in the United States
 
12516
+#: ../data/Locations.xml.in.h:2943
 
12517
+msgid "Crookston"
 
12518
+msgstr ""
 
12519
+
 
12520
+#. A city in Florida in the United States
 
12521
+#: ../data/Locations.xml.in.h:2945
 
12522
+msgid "Cross City"
 
12523
+msgstr ""
 
12524
+
 
12525
+#. A city in Tennessee in the United States
 
12526
+#: ../data/Locations.xml.in.h:2947
 
12527
+msgid "Crossville"
 
12528
+msgstr ""
 
12529
+
 
12530
+#. A city in Italy
 
12531
+#: ../data/Locations.xml.in.h:2949
 
12532
+msgid "Crotone"
 
12533
+msgstr ""
 
12534
+
 
12535
+#. A city in Acre in Brazil
 
12536
+#: ../data/Locations.xml.in.h:2951
 
12537
+msgid "Cruzeiro do Sul"
 
12538
+msgstr ""
 
12539
+
 
12540
+#. A city in Spain
 
12541
+#: ../data/Locations.xml.in.h:2953
 
12542
+msgid "Cuatro Vientos"
 
12543
+msgstr ""
 
12544
+
 
12545
+#. CU - Cuba
 
12546
+#: ../data/Locations.xml.in.h:2955
 
12547
+msgid "Cuba"
 
12548
+msgstr ""
 
12549
+
 
12550
+#. A city in Morelos in Mexico
 
12551
+#: ../data/Locations.xml.in.h:2957
 
12552
+msgid "Cuernavaca"
 
12553
+msgstr ""
 
12554
+
 
12555
+#. A city in Mato Grosso in Brazil
 
12556
+#: ../data/Locations.xml.in.h:2959
 
12557
+msgid "Cuiabá"
 
12558
+msgstr ""
 
12559
+
 
12560
+#. A city in Sinaloa in Mexico
 
12561
+#: ../data/Locations.xml.in.h:2961
 
12562
+msgid "Culiacán"
 
12563
+msgstr ""
 
12564
+
 
12565
+#. A city in Alabama in the United States
 
12566
+#: ../data/Locations.xml.in.h:2963
 
12567
+msgid "Cullman"
 
12568
+msgstr ""
 
12569
+
 
12570
+#. A city in Virginia in the United States
 
12571
+#: ../data/Locations.xml.in.h:2965
 
12572
+msgid "Culpeper"
 
12573
+msgstr ""
 
12574
+
 
12575
+#. A city in Maryland in the United States
 
12576
+#: ../data/Locations.xml.in.h:2967
 
12577
+msgid "Cumberland"
 
12578
+msgstr ""
 
12579
+
 
12580
+#. A city in Italy
 
12581
+#: ../data/Locations.xml.in.h:2969
 
12582
+msgid "Cuneo"
 
12583
+msgstr ""
 
12584
+
 
12585
+#. A city in the Netherlands Antilles
 
12586
+#: ../data/Locations.xml.in.h:2971
 
12587
+msgid "Cupe Coy"
 
12588
+msgstr ""
 
12589
+
 
12590
+#. A city in Paraná in Brazil
 
12591
+#: ../data/Locations.xml.in.h:2973
 
12592
+msgid "Curitiba"
 
12593
+msgstr ""
 
12594
+
 
12595
+#. A city in North Carolina in the United States
 
12596
+#: ../data/Locations.xml.in.h:2975
 
12597
+msgid "Currituck"
 
12598
+msgstr ""
 
12599
+
 
12600
+#. A city in Peru
 
12601
+#: ../data/Locations.xml.in.h:2977
 
12602
+msgid "Cusco"
 
12603
+msgstr ""
 
12604
+
 
12605
+#. A city in Oklahoma in the United States
 
12606
+#: ../data/Locations.xml.in.h:2979
 
12607
+msgid "Cushing"
 
12608
+msgstr ""
 
12609
+
 
12610
+#. A city in South Dakota in the United States
 
12611
+#: ../data/Locations.xml.in.h:2981
 
12612
+msgid "Custer"
 
12613
+msgstr ""
 
12614
+
 
12615
+#. A city in Montana in the United States
 
12616
+#: ../data/Locations.xml.in.h:2983
 
12617
+msgid "Cut Bank"
 
12618
+msgstr ""
 
12619
+
 
12620
+#. CY - Cyprus
 
12621
+#: ../data/Locations.xml.in.h:2985
 
12622
+msgid "Cyprus"
 
12623
+msgstr ""
 
12624
+
 
12625
+#. CZ - Czech Republic
 
12626
+#: ../data/Locations.xml.in.h:2987
 
12627
+msgid "Czech Republic"
 
12628
+msgstr ""
 
12629
+
 
12630
+#. CI - Côte d'Ivoire
 
12631
+#: ../data/Locations.xml.in.h:2989
 
12632
+msgid "Côte d'Ivoire"
 
12633
+msgstr ""
 
12634
+
 
12635
+#. A city in Colombia
 
12636
+#: ../data/Locations.xml.in.h:2991
 
12637
+msgid "Cúcuta"
 
12638
+msgstr ""
 
12639
+
 
12640
+#. A city in Viet Nam
 
12641
+#: ../data/Locations.xml.in.h:2993
 
12642
+msgid "Da Nang"
 
12643
+msgstr ""
 
12644
+
 
12645
+#. A city in California in the United States
 
12646
+#: ../data/Locations.xml.in.h:2995
 
12647
+msgid "Daggett"
 
12648
+msgstr ""
 
12649
+
 
12650
+#. The capital of Senegal
 
12651
+#: ../data/Locations.xml.in.h:2997
 
12652
+msgid "Dakar"
 
12653
+msgstr ""
 
12654
+
 
12655
+#. A city in Turkey
 
12656
+#: ../data/Locations.xml.in.h:2999
 
12657
+msgid "Dalaman"
 
12658
+msgstr ""
 
12659
+
 
12660
+#. A city in Norway
 
12661
+#: ../data/Locations.xml.in.h:3001
 
12662
+msgid "Dalem"
 
12663
+msgstr ""
 
12664
+
 
12665
+#. A city in Alabama in the United States
 
12666
+#: ../data/Locations.xml.in.h:3003
 
12667
+msgid "Daleville"
 
12668
+msgstr ""
 
12669
+
 
12670
+#. A city in Texas in the United States
 
12671
+#: ../data/Locations.xml.in.h:3005
 
12672
+msgid "Dalhart"
 
12673
+msgstr ""
 
12674
+
 
12675
+#. A city in Liaoning in China
 
12676
+#: ../data/Locations.xml.in.h:3007
 
12677
+msgid "Dalian"
 
12678
+msgstr ""
 
12679
+
 
12680
+#. A city in Texas in the United States
 
12681
+#: ../data/Locations.xml.in.h:3009
 
12682
+msgid "Dallas"
 
12683
+msgstr ""
 
12684
+
 
12685
+#. A city in Georgia in the United States
 
12686
+#: ../data/Locations.xml.in.h:3011
 
12687
+msgid "Dalton"
 
12688
+msgstr ""
 
12689
+
 
12690
+#. A city in California in the United States
 
12691
+#: ../data/Locations.xml.in.h:3013
 
12692
+msgid "Daly City"
 
12693
+msgstr ""
 
12694
+
 
12695
+#. A city in South Carolina in the United States
 
12696
+#: ../data/Locations.xml.in.h:3015
 
12697
+msgid "Dalzell"
 
12698
+msgstr ""
 
12699
+
 
12700
+#. The capital of Syria.
 
12701
+#. "Damascus" is the traditional English name.
 
12702
+#. The local name in Arabic is "Dimashq".
 
12703
+#.
 
12704
+#: ../data/Locations.xml.in.h:3020
 
12705
+msgid "Damascus"
 
12706
+msgstr ""
 
12707
+
 
12708
+#. A city in Connecticut in the United States
 
12709
+#: ../data/Locations.xml.in.h:3022
 
12710
+msgid "Danbury"
 
12711
+msgstr ""
 
12712
+
 
12713
+#. The timezone around Danmarkshavn station in Greenland.
 
12714
+#. The string is only used in places where "Greenland" is
 
12715
+#. already clear from context.
 
12716
+#.
 
12717
+#: ../data/Locations.xml.in.h:3027
 
12718
+msgid "Danmarkshavn"
 
12719
+msgstr ""
 
12720
+
 
12721
+#. A city in New York in the United States
 
12722
+#: ../data/Locations.xml.in.h:3029
 
12723
+msgid "Dansville"
 
12724
+msgstr ""
 
12725
+
 
12726
+#. A city in Algeria
 
12727
+#: ../data/Locations.xml.in.h:3031
 
12728
+msgid "Dar el Beida"
 
12729
+msgstr ""
 
12730
+
 
12731
+#. The capital of Tanzania
 
12732
+#: ../data/Locations.xml.in.h:3033
 
12733
+msgid "Dar es Salaam"
 
12734
+msgstr ""
 
12735
+
 
12736
+#. A city in South Carolina in the United States
 
12737
+#: ../data/Locations.xml.in.h:3035
 
12738
+msgid "Darlington"
 
12739
+msgstr ""
 
12740
+
 
12741
+#. A city in Northern Territory in Australia
 
12742
+#: ../data/Locations.xml.in.h:3037
 
12743
+msgid "Darwin"
 
12744
+msgstr ""
 
12745
+
 
12746
+#. A city in Manitoba in Canada
 
12747
+#: ../data/Locations.xml.in.h:3039
 
12748
+msgid "Dauphin"
 
12749
+msgstr ""
 
12750
+
 
12751
+#. A city in the Philippines
 
12752
+#: ../data/Locations.xml.in.h:3041
 
12753
+msgid "Davao"
 
12754
+msgstr ""
 
12755
+
 
12756
+#. A city in Iowa in the United States
 
12757
+#: ../data/Locations.xml.in.h:3043
 
12758
+msgid "Davenport"
 
12759
+msgstr ""
 
12760
+
 
12761
+#. A city in Panama
 
12762
+#: ../data/Locations.xml.in.h:3045
 
12763
+msgid "David"
 
12764
+msgstr ""
 
12765
+
 
12766
+#. An Australian research station in Antarctica. The string
 
12767
+#. is only used in places where "Antarctica" is already
 
12768
+#. clear from context.
 
12769
+#.
 
12770
+#: ../data/Locations.xml.in.h:3050
 
12771
+msgid "Davis Station"
 
12772
+msgstr ""
 
12773
+
 
12774
+#. A city in Yukon Territory in Canada
 
12775
+#: ../data/Locations.xml.in.h:3052
 
12776
+msgid "Dawson"
 
12777
+msgstr ""
 
12778
+
 
12779
+#. A city in France
 
12780
+#: ../data/Locations.xml.in.h:3054
 
12781
+msgid "Dax"
 
12782
+msgstr ""
 
12783
+
 
12784
+#. A city in Syria
 
12785
+#: ../data/Locations.xml.in.h:3056
 
12786
+msgid "Dayr az Zawr"
 
12787
+msgstr ""
 
12788
+
 
12789
+#. A city in Iran.
 
12790
+#. The name is also written "ديرستان".
 
12791
+#.
 
12792
+#: ../data/Locations.xml.in.h:3060
 
12793
+msgid "Dayrestan"
 
12794
+msgstr ""
 
12795
+
 
12796
+#. A city in Ohio in the United States
 
12797
+#: ../data/Locations.xml.in.h:3062
 
12798
+msgid "Dayton"
 
12799
+msgstr ""
 
12800
+
 
12801
+#. A city in Florida in the United States
 
12802
+#: ../data/Locations.xml.in.h:3064
 
12803
+msgid "Daytona Beach"
 
12804
+msgstr ""
 
12805
+
 
12806
+#. A city in the Netherlands
 
12807
+#: ../data/Locations.xml.in.h:3066
 
12808
+msgid "De Kooy"
 
12809
+msgstr ""
 
12810
+
 
12811
+#. A city in Arkansas in the United States
 
12812
+#: ../data/Locations.xml.in.h:3068
 
12813
+msgid "De Queen"
 
12814
+msgstr ""
 
12815
+
 
12816
+#. A city in Illinois in the United States
 
12817
+#: ../data/Locations.xml.in.h:3070
 
12818
+msgid "DeKalb"
 
12819
+msgstr ""
 
12820
+
 
12821
+#. A city in Louisiana in the United States
 
12822
+#: ../data/Locations.xml.in.h:3072
 
12823
+msgid "DeRidder"
 
12824
+msgstr ""
 
12825
+
 
12826
+#. A city in Alaska in the United States
 
12827
+#: ../data/Locations.xml.in.h:3074
 
12828
+msgid "Deadhorse"
 
12829
+msgstr ""
 
12830
+
 
12831
+#. A city in British Columbia in Canada
 
12832
+#: ../data/Locations.xml.in.h:3076
 
12833
+msgid "Dease Lake"
 
12834
+msgstr ""
 
12835
+
 
12836
+#. A city in Hungary
 
12837
+#: ../data/Locations.xml.in.h:3078
 
12838
+msgid "Debrecen"
 
12839
+msgstr ""
 
12840
+
 
12841
+#. A city in Italy
 
12842
+#: ../data/Locations.xml.in.h:3080
 
12843
+msgid "Decimomannu"
 
12844
+msgstr ""
 
12845
+
 
12846
+#. A city in Iowa in the United States
 
12847
+#: ../data/Locations.xml.in.h:3082
 
12848
+msgid "Decorah"
 
12849
+msgstr ""
 
12850
+
 
12851
+#. A city in the Netherlands
 
12852
+#: ../data/Locations.xml.in.h:3084
 
12853
+msgid "Deelen"
 
12854
+msgstr ""
 
12855
+
 
12856
+#. A city in Newfoundland and Labrador in Canada
 
12857
+#: ../data/Locations.xml.in.h:3086
 
12858
+msgid "Deer Lake"
 
12859
+msgstr ""
 
12860
+
 
12861
+#. A city in Washington in the United States
 
12862
+#: ../data/Locations.xml.in.h:3088
 
12863
+msgid "Deer Park"
 
12864
+msgstr ""
 
12865
+
 
12866
+#. A city in Ohio in the United States
 
12867
+#: ../data/Locations.xml.in.h:3090
 
12868
+msgid "Defiance"
 
12869
+msgstr ""
 
12870
+
 
12871
+#. A city in India
 
12872
+#. also known as Dehra Doon
 
12873
+#. the local name in Hindi is "देहरादून"
 
12874
+#: ../data/Locations.xml.in.h:3094
 
12875
+msgid "Dehradun"
 
12876
+msgstr ""
 
12877
+
 
12878
+#. A city in Texas in the United States
 
12879
+#: ../data/Locations.xml.in.h:3096
 
12880
+msgid "Del Rio"
 
12881
+msgstr ""
 
12882
+
 
12883
+#. A state/province/territory in United States
 
12884
+#: ../data/Locations.xml.in.h:3098
 
12885
+msgid "Delaware"
 
12886
+msgstr ""
 
12887
+
 
12888
+#. A city in Ontario in Canada
 
12889
+#: ../data/Locations.xml.in.h:3100
 
12890
+msgid "Delhi"
 
12891
+msgstr ""
 
12892
+
 
12893
+#. A city in Utah in the United States
 
12894
+#: ../data/Locations.xml.in.h:3102
 
12895
+msgid "Delta"
 
12896
+msgstr ""
 
12897
+
 
12898
+#. A city in Alaska in the United States
 
12899
+#: ../data/Locations.xml.in.h:3104
 
12900
+msgid "Delta Junction"
 
12901
+msgstr ""
 
12902
+
 
12903
+#. A city in New Mexico in the United States
 
12904
+#: ../data/Locations.xml.in.h:3106
 
12905
+msgid "Deming"
 
12906
+msgstr ""
 
12907
+
 
12908
+#. A city in Iowa in the United States
 
12909
+#: ../data/Locations.xml.in.h:3108
 
12910
+msgid "Denison"
 
12911
+msgstr ""
 
12912
+
 
12913
+#. DK - Denmark. The Danish name is "Danmark"
 
12914
+#: ../data/Locations.xml.in.h:3110
 
12915
+msgid "Denmark"
 
12916
+msgstr ""
 
12917
+
 
12918
+#. A city in Texas in the United States
 
12919
+#: ../data/Locations.xml.in.h:3112
 
12920
+msgid "Denton"
 
12921
+msgstr ""
 
12922
+
 
12923
+#. A city in Colorado in the United States
 
12924
+#: ../data/Locations.xml.in.h:3114
 
12925
+msgid "Denver"
 
12926
+msgstr ""
 
12927
+
 
12928
+#. A city in Iowa in the United States
 
12929
+#: ../data/Locations.xml.in.h:3116
 
12930
+msgid "Des Moines"
 
12931
+msgstr ""
 
12932
+
 
12933
+#. A city in Florida in the United States
 
12934
+#: ../data/Locations.xml.in.h:3118
 
12935
+msgid "Destin"
 
12936
+msgstr ""
 
12937
+
 
12938
+#. A city in Michigan in the United States
 
12939
+#: ../data/Locations.xml.in.h:3120
 
12940
+msgid "Detroit"
 
12941
+msgstr ""
 
12942
+
 
12943
+#. A city in Minnesota in the United States
 
12944
+#: ../data/Locations.xml.in.h:3122
 
12945
+msgid "Detroit Lakes"
 
12946
+msgstr ""
 
12947
+
 
12948
+#. A city in North Dakota in the United States
 
12949
+#: ../data/Locations.xml.in.h:3124
 
12950
+msgid "Devils Lake"
 
12951
+msgstr ""
 
12952
+
 
12953
+#. A city in Saudi Arabia.
 
12954
+#. "Dhahran" is the traditional English name.
 
12955
+#. The local name in Arabic is "Az Zahran".
 
12956
+#.
 
12957
+#: ../data/Locations.xml.in.h:3129
 
12958
+msgid "Dhahran"
 
12959
+msgstr ""
 
12960
+
 
12961
+#. The capital of Bangladesh.
 
12962
+#. The local name in Bengali is "ঢাকা".
 
12963
+#.
 
12964
+#: ../data/Locations.xml.in.h:3133
 
12965
+msgid "Dhaka"
 
12966
+msgstr ""
 
12967
+
 
12968
+#. A city in India
 
12969
+#: ../data/Locations.xml.in.h:3135
 
12970
+msgid "Dibrugarh"
 
12971
+msgstr ""
 
12972
+
 
12973
+#. A city in North Dakota in the United States
 
12974
+#: ../data/Locations.xml.in.h:3137
 
12975
+msgid "Dickinson"
 
12976
+msgstr ""
 
12977
+
 
12978
+#. A city in France
 
12979
+#: ../data/Locations.xml.in.h:3139
 
12980
+msgid "Dijon"
 
12981
+msgstr ""
 
12982
+
 
12983
+#. A city in Alaska in the United States
 
12984
+#: ../data/Locations.xml.in.h:3141
 
12985
+msgid "Dillingham"
 
12986
+msgstr ""
 
12987
+
 
12988
+#. A city in Montana in the United States
 
12989
+#: ../data/Locations.xml.in.h:3143
 
12990
+msgid "Dillon"
 
12991
+msgstr ""
 
12992
+
 
12993
+#. A city in India
 
12994
+#. the local name in Hindi is "दीमापुर"
 
12995
+#: ../data/Locations.xml.in.h:3146
 
12996
+msgid "Dimapur"
 
12997
+msgstr ""
 
12998
+
 
12999
+#. A city in France
 
13000
+#: ../data/Locations.xml.in.h:3148
 
13001
+msgid "Dinard"
 
13002
+msgstr ""
 
13003
+
 
13004
+#. A city in Nova Scotia in Canada
 
13005
+#: ../data/Locations.xml.in.h:3150
 
13006
+msgid "Dingwall"
 
13007
+msgstr ""
 
13008
+
 
13009
+#. A city in New Brunswick in Canada
 
13010
+#: ../data/Locations.xml.in.h:3152
 
13011
+msgid "Dipper Harbour"
 
13012
+msgstr ""
 
13013
+
 
13014
+#. A city in North East England in the United Kingdom
 
13015
+#: ../data/Locations.xml.in.h:3154
 
13016
+msgid "Dishforth"
 
13017
+msgstr ""
 
13018
+
 
13019
+#. A state/province/territory in United States
 
13020
+#: ../data/Locations.xml.in.h:3156
 
13021
+msgid "District of Columbia"
 
13022
+msgstr ""
 
13023
+
 
13024
+#. A city in Turkey
 
13025
+#: ../data/Locations.xml.in.h:3158
 
13026
+msgid "Diyarbakir"
 
13027
+msgstr ""
 
13028
+
 
13029
+#. A city in Algeria
 
13030
+#: ../data/Locations.xml.in.h:3160
 
13031
+msgid "Djanet"
 
13032
+msgstr ""
 
13033
+
 
13034
+#. A city in Norway
 
13035
+#: ../data/Locations.xml.in.h:3162
 
13036
+msgid "Djupdalen"
 
13037
+msgstr ""
 
13038
+
 
13039
+#. A city in Ukraine
 
13040
+#: ../data/Locations.xml.in.h:3164
 
13041
+msgid "Dnipropetrovs'k"
 
13042
+msgstr ""
 
13043
+
 
13044
+#. A city in Iran.
 
13045
+#. The name is also written "دو گنبدان".
 
13046
+#.
 
13047
+#: ../data/Locations.xml.in.h:3168
 
13048
+msgid "Do Gonbadan"
 
13049
+msgstr ""
 
13050
+
 
13051
+#. A city in Italy
 
13052
+#: ../data/Locations.xml.in.h:3170
 
13053
+msgid "Dobbiaco"
 
13054
+msgstr ""
 
13055
+
 
13056
+#. A city in Minnesota in the United States
 
13057
+#: ../data/Locations.xml.in.h:3172
 
13058
+msgid "Dodge Center"
 
13059
+msgstr ""
 
13060
+
 
13061
+#. A city in Kansas in the United States
 
13062
+#: ../data/Locations.xml.in.h:3174
 
13063
+msgid "Dodge City"
 
13064
+msgstr ""
 
13065
+
 
13066
+#. A city in Tanzania
 
13067
+#: ../data/Locations.xml.in.h:3176
 
13068
+msgid "Dodoma"
 
13069
+msgstr ""
 
13070
+
 
13071
+#. The capital of Qatar.
 
13072
+#. "Doha" is the traditional English name.
 
13073
+#. The local name in Arabic is "Ad Dawhah / الدوحة".
 
13074
+#.
 
13075
+#: ../data/Locations.xml.in.h:3181
 
13076
+msgid "Doha"
 
13077
+msgstr ""
 
13078
+
 
13079
+#. A city in France
 
13080
+#: ../data/Locations.xml.in.h:3183
 
13081
+msgid "Dole"
 
13082
+msgstr ""
 
13083
+
 
13084
+#. A city in France
 
13085
+#: ../data/Locations.xml.in.h:3185
 
13086
+msgid "Dollemard"
 
13087
+msgstr ""
 
13088
+
 
13089
+#. A city in Slovakia
 
13090
+#: ../data/Locations.xml.in.h:3187
 
13091
+msgid "Dolný Hričov"
 
13092
+msgstr ""
 
13093
+
 
13094
+#. DM - Dominica, a Caribbean island nation, not to be confused
 
13095
+#. with the Domincan Republic.
 
13096
+#.
 
13097
+#: ../data/Locations.xml.in.h:3191
 
13098
+msgid "Dominica"
 
13099
+msgstr ""
 
13100
+
 
13101
+#. DO - Dominican Republic
 
13102
+#: ../data/Locations.xml.in.h:3193
 
13103
+msgid "Dominican Republic"
 
13104
+msgstr ""
 
13105
+
 
13106
+#. A city in Baden-Württemberg in Germany
 
13107
+#: ../data/Locations.xml.in.h:3195
 
13108
+msgid "Donaueschingen"
 
13109
+msgstr ""
 
13110
+
 
13111
+#. A city in Ukraine
 
13112
+#: ../data/Locations.xml.in.h:3197
 
13113
+msgid "Donets'k"
 
13114
+msgstr ""
 
13115
+
 
13116
+#. A city in Bavaria in Germany
 
13117
+#: ../data/Locations.xml.in.h:3199
 
13118
+msgid "Dorfgmünd"
 
13119
+msgstr ""
 
13120
+
 
13121
+#. A city in the Netherlands Antilles
 
13122
+#: ../data/Locations.xml.in.h:3201
 
13123
+msgid "Dorp Nikiboko"
 
13124
+msgstr ""
 
13125
+
 
13126
+#. A city in North Rhine-Westphalia in Germany
 
13127
+#: ../data/Locations.xml.in.h:3203
 
13128
+msgid "Dortmund"
 
13129
+msgstr ""
 
13130
+
 
13131
+#. A city in Alabama in the United States
 
13132
+#: ../data/Locations.xml.in.h:3205
 
13133
+msgid "Dothan"
 
13134
+msgstr ""
 
13135
+
 
13136
+#. A city in Cameroon
 
13137
+#: ../data/Locations.xml.in.h:3207
 
13138
+msgid "Douala"
 
13139
+msgstr ""
 
13140
+
 
13141
+#. A city in Delaware in the United States
 
13142
+#: ../data/Locations.xml.in.h:3209
 
13143
+msgid "Dover"
 
13144
+msgstr ""
 
13145
+
 
13146
+#. A city in Pennsylvania in the United States
 
13147
+#: ../data/Locations.xml.in.h:3211
 
13148
+msgid "Doylestown"
 
13149
+msgstr ""
 
13150
+
 
13151
+#. A city in Saxony in Germany
 
13152
+#: ../data/Locations.xml.in.h:3213
 
13153
+msgid "Dresden"
 
13154
+msgstr ""
 
13155
+
 
13156
+#. A city in Alberta in Canada
 
13157
+#: ../data/Locations.xml.in.h:3215
 
13158
+msgid "Drumheller"
 
13159
+msgstr ""
 
13160
+
 
13161
+#. A city in Montana in the United States
 
13162
+#: ../data/Locations.xml.in.h:3217
 
13163
+msgid "Drummond"
 
13164
+msgstr ""
 
13165
+
 
13166
+#. A city in Christmas Island
 
13167
+#: ../data/Locations.xml.in.h:3219
 
13168
+msgid "Drumsite"
 
13169
+msgstr ""
 
13170
+
 
13171
+#. A city in Pennsylvania in the United States
 
13172
+#: ../data/Locations.xml.in.h:3221
 
13173
+msgid "Du Bois"
 
13174
+msgstr ""
 
13175
+
 
13176
+#. A city in the United Arab Emirates.
 
13177
+#. "Dubai" is the traditional English name.
 
13178
+#. The local name in Arabic is "Dubayy".
 
13179
+#.
 
13180
+#: ../data/Locations.xml.in.h:3226
 
13181
+msgid "Dubai"
 
13182
+msgstr ""
 
13183
+
 
13184
+#. A city in New South Wales in Australia
 
13185
+#: ../data/Locations.xml.in.h:3228
 
13186
+msgid "Dubbo"
 
13187
+msgstr ""
 
13188
+
 
13189
+#. A city in Croatia
 
13190
+#: ../data/Locations.xml.in.h:3230
 
13191
+msgid "Dubrovnik"
 
13192
+msgstr ""
 
13193
+
 
13194
+#. A city in Iowa in the United States
 
13195
+#: ../data/Locations.xml.in.h:3232
 
13196
+msgid "Dubuque"
 
13197
+msgstr ""
 
13198
+
 
13199
+#. A city in Minnesota in the United States
 
13200
+#: ../data/Locations.xml.in.h:3234
 
13201
+msgid "Duluth"
 
13202
+msgstr ""
 
13203
+
 
13204
+#. A city in Texas in the United States
 
13205
+#: ../data/Locations.xml.in.h:3236
 
13206
+msgid "Dumas"
 
13207
+msgstr ""
 
13208
+
 
13209
+#. A French research station in Antarctica. The string is
 
13210
+#. only used in places where "Antarctica" is already clear
 
13211
+#. from context.
 
13212
+#.
 
13213
+#: ../data/Locations.xml.in.h:3241
 
13214
+msgid "Dumont d'Urville Station"
 
13215
+msgstr ""
 
13216
+
 
13217
+#. A city in Oklahoma in the United States
 
13218
+#: ../data/Locations.xml.in.h:3243
 
13219
+msgid "Duncan"
 
13220
+msgstr ""
 
13221
+
 
13222
+#. A city in Greenland.
 
13223
+#. The local name in Kalaallisut is "Uummannaq".
 
13224
+#.
 
13225
+#: ../data/Locations.xml.in.h:3247
 
13226
+msgid "Dundas"
 
13227
+msgstr ""
 
13228
+
 
13229
+#. A city in Scotland in the United Kingdom
 
13230
+#: ../data/Locations.xml.in.h:3249
 
13231
+msgid "Dundee"
 
13232
+msgstr ""
 
13233
+
 
13234
+#. A city in New York in the United States
 
13235
+#: ../data/Locations.xml.in.h:3251
 
13236
+msgid "Dunkirk"
 
13237
+msgstr ""
 
13238
+
 
13239
+#. A city in Ireland.
 
13240
+#. The local name in Irish is "Dún Laoghaire".
 
13241
+#.
 
13242
+#: ../data/Locations.xml.in.h:3255
 
13243
+msgid "Dunleary"
 
13244
+msgstr ""
 
13245
+
 
13246
+#. A city in Oklahoma in the United States
 
13247
+#: ../data/Locations.xml.in.h:3257
 
13248
+msgid "Durant"
 
13249
+msgstr ""
 
13250
+
 
13251
+#. A city in Uruguay
 
13252
+#: ../data/Locations.xml.in.h:3259
 
13253
+msgid "Durazno"
 
13254
+msgstr ""
 
13255
+
 
13256
+#. A city in South Africa
 
13257
+#: ../data/Locations.xml.in.h:3261
 
13258
+msgid "Durban"
 
13259
+msgstr ""
 
13260
+
 
13261
+#. A city in North Carolina in the United States
 
13262
+#: ../data/Locations.xml.in.h:3263
 
13263
+msgid "Durham"
 
13264
+msgstr ""
 
13265
+
 
13266
+#. The capital of Tajikistan
 
13267
+#: ../data/Locations.xml.in.h:3265
 
13268
+msgid "Dushanbe"
 
13269
+msgstr ""
 
13270
+
 
13271
+#. A city in Tennessee in the United States
 
13272
+#: ../data/Locations.xml.in.h:3267
 
13273
+msgid "Dyersburg"
 
13274
+msgstr ""
 
13275
+
 
13276
+#. A city in Mayotte
 
13277
+#: ../data/Locations.xml.in.h:3269
 
13278
+msgid "Dzaoudzi"
 
13279
+msgstr ""
 
13280
+
 
13281
+#. A city in Northwest Territories in Canada
 
13282
+#: ../data/Locations.xml.in.h:3271
 
13283
+msgid "Délįne"
 
13284
+msgstr ""
 
13285
+
 
13286
+#. A city in Wisconsin in the United States
 
13287
+#: ../data/Locations.xml.in.h:3273
 
13288
+msgid "Eagle River"
 
13289
+msgstr ""
 
13290
+
 
13291
+#. A city in Ontario in Canada
 
13292
+#: ../data/Locations.xml.in.h:3275
 
13293
+msgid "Earlton"
 
13294
+msgstr ""
 
13295
+
 
13296
+#. This represents the time zone in the eastern part of the
 
13297
+#. Brazilian state of Amazonas. See the comment on
 
13298
+#. "Brasília Time" for more details. This string is only
 
13299
+#. used in places where "Brazil" is already clear from
 
13300
+#. context.
 
13301
+#.
 
13302
+#: ../data/Locations.xml.in.h:3282
 
13303
+msgid "East Amazonas"
 
13304
+msgstr ""
 
13305
+
 
13306
+#. A city in New York in the United States
 
13307
+#: ../data/Locations.xml.in.h:3284
 
13308
+msgid "East Hampton"
 
13309
+msgstr ""
 
13310
+
 
13311
+#. A city in Massachusetts in the United States
 
13312
+#: ../data/Locations.xml.in.h:3286
 
13313
+msgid "East Milton"
 
13314
+msgstr ""
 
13315
+
 
13316
+#. A city in Saskatchewan in Canada
 
13317
+#: ../data/Locations.xml.in.h:3288
 
13318
+msgid "East Poplar"
 
13319
+msgstr ""
 
13320
+
 
13321
+#. A state/province/territory in United Kingdom
 
13322
+#: ../data/Locations.xml.in.h:3290
 
13323
+msgid "East and South East England"
 
13324
+msgstr ""
 
13325
+
 
13326
+#. A state/province/territory in Belgium
 
13327
+#: ../data/Locations.xml.in.h:3292
 
13328
+msgid "East-Flanders"
 
13329
+msgstr ""
 
13330
+
 
13331
+#. A city in Saskatchewan in Canada
 
13332
+#: ../data/Locations.xml.in.h:3294
 
13333
+msgid "Eastend"
 
13334
+msgstr ""
 
13335
+
 
13336
+#. This refers to the time zone for Easter Island. The
 
13337
+#. string is only used in places where "Chile" is already
 
13338
+#. understood from context.
 
13339
+#.
 
13340
+#: ../data/Locations.xml.in.h:3299
 
13341
+msgid "Easter Island"
 
13342
+msgstr ""
 
13343
+
 
13344
+#. The time zone used in the eastern half of the Democratic
 
13345
+#. Republic of the Congo. The string is only used in places
 
13346
+#. where "Democratic Republic of the Congo" is already
 
13347
+#. clear from context. FIXME: is there an official name for
 
13348
+#. this zone?
 
13349
+#.
 
13350
+#: ../data/Locations.xml.in.h:3306
 
13351
+msgid "Eastern Congo"
 
13352
+msgstr ""
 
13353
+
 
13354
+#. The timezone around Scoresbysund / Ittoqqortoormiit on
 
13355
+#. the east coast of Greenland.
 
13356
+#.
 
13357
+#: ../data/Locations.xml.in.h:3310
 
13358
+msgid "Eastern Greenland"
 
13359
+msgstr ""
 
13360
+
 
13361
+#. The timezone on the eastern islands of Indonesia. The
 
13362
+#. name in Indonesian is "Waktu Indonesia Bagian Timur".
 
13363
+#.
 
13364
+#: ../data/Locations.xml.in.h:3314
 
13365
+msgid "Eastern Indonesia Time"
 
13366
+msgstr ""
 
13367
+
 
13368
+#. The time zone used in the eastern half of Kazakhstan.
 
13369
+#. FIXME: is there an official name for this zone?
 
13370
+#.
 
13371
+#: ../data/Locations.xml.in.h:3318
 
13372
+msgid "Eastern Kazakhstan"
 
13373
+msgstr ""
 
13374
+
 
13375
+#. The time zone used in the eastern part of Mongolia.
 
13376
+#. FIXME: Is there an official name for this zone?
 
13377
+#.
 
13378
+#: ../data/Locations.xml.in.h:3322
 
13379
+msgid "Eastern Mongolia"
 
13380
+msgstr ""
 
13381
+
 
13382
+#. The time zone used on the east coast of the United
 
13383
+#. States, and the corresponding (non-coastal) part of
 
13384
+#. Canada. In French-speaking parts of Canada it is called
 
13385
+#. "Heure de l'Est". The string is only used in places
 
13386
+#. where "US" or "Canada" is already clear from the context.
 
13387
+#.
 
13388
+#: ../data/Locations.xml.in.h:3329
 
13389
+msgid "Eastern Time"
 
13390
+msgstr ""
 
13391
+
 
13392
+#. The time zone used in Eastern Australia. This string is
 
13393
+#. specifically for the time zone as implemented in the
 
13394
+#. state of New South Wales, and is only used in places
 
13395
+#. where "Australia" is already clear from context.
 
13396
+#.
 
13397
+#: ../data/Locations.xml.in.h:3335
 
13398
+msgid "Eastern Time (New South Wales)"
 
13399
+msgstr ""
 
13400
+
 
13401
+#. The time zone used in Eastern Australia. This string is
 
13402
+#. specifically for the time zone as implemented in the
 
13403
+#. state of Queensland, which does not use Summer Time.
 
13404
+#. This string is only used in places where "Australia" is
 
13405
+#. already clear from context.
 
13406
+#.
 
13407
+#: ../data/Locations.xml.in.h:3342
 
13408
+msgid "Eastern Time (Queensland)"
 
13409
+msgstr ""
 
13410
+
 
13411
+#. The time zone used in Eastern Australia. This string is
 
13412
+#. specifically for the time zone as implemented in the
 
13413
+#. state of Tasmania, and is only used in places where
 
13414
+#. "Australia" is already clear from context.
 
13415
+#.
 
13416
+#: ../data/Locations.xml.in.h:3348
 
13417
+msgid "Eastern Time (Tasmania)"
 
13418
+msgstr ""
 
13419
+
 
13420
+#. The time zone used in Eastern Australia. This string is
 
13421
+#. specifically for the time zone as implemented in the
 
13422
+#. state of Victoria, and is only used in places where
 
13423
+#. "Australia" is already clear from context.
 
13424
+#.
 
13425
+#: ../data/Locations.xml.in.h:3354
 
13426
+msgid "Eastern Time (Victoria)"
 
13427
+msgstr ""
 
13428
+
 
13429
+#. This represents the time zone in certain parts of Canada
 
13430
+#. (such as Southampton Island, Nunavut, and Atikokan,
 
13431
+#. Ontario) which are part of the "Eastern Time" zone, but
 
13432
+#. which do not observe Daylight Saving Time with the rest
 
13433
+#. of the zone.
 
13434
+#.
 
13435
+#: ../data/Locations.xml.in.h:3361
 
13436
+msgid "Eastern Time, no DST (Southampton Island, etc)"
 
13437
+msgstr ""
 
13438
+
 
13439
+#. A city in Maryland in the United States
 
13440
+#: ../data/Locations.xml.in.h:3363
 
13441
+msgid "Easton"
 
13442
+msgstr ""
 
13443
+
 
13444
+#. A city in Washington in the United States
 
13445
+#: ../data/Locations.xml.in.h:3365
 
13446
+msgid "Eastsound"
 
13447
+msgstr ""
 
13448
+
 
13449
+#. A city in Wisconsin in the United States
 
13450
+#: ../data/Locations.xml.in.h:3367
 
13451
+msgid "Eau Claire"
 
13452
+msgstr ""
 
13453
+
 
13454
+#. EC - Ecuador
 
13455
+#: ../data/Locations.xml.in.h:3369
 
13456
+msgid "Ecuador"
 
13457
+msgstr ""
 
13458
+
 
13459
+#. A city in North Carolina in the United States
 
13460
+#: ../data/Locations.xml.in.h:3371
 
13461
+msgid "Edenton"
 
13462
+msgstr ""
 
13463
+
 
13464
+#. A city in Texas in the United States
 
13465
+#: ../data/Locations.xml.in.h:3373
 
13466
+msgid "Edinburg"
 
13467
+msgstr ""
 
13468
+
 
13469
+#. A city in Scotland in the United Kingdom
 
13470
+#: ../data/Locations.xml.in.h:3375
 
13471
+msgid "Edinburgh"
 
13472
+msgstr ""
 
13473
+
 
13474
+#. A city in Alberta in Canada
 
13475
+#: ../data/Locations.xml.in.h:3377
 
13476
+msgid "Edmonton"
 
13477
+msgstr ""
 
13478
+
 
13479
+#. A city in Alberta in Canada
 
13480
+#: ../data/Locations.xml.in.h:3379
 
13481
+msgid "Edson"
 
13482
+msgstr ""
 
13483
+
 
13484
+#. A city in California in the United States
 
13485
+#: ../data/Locations.xml.in.h:3381
 
13486
+msgid "Edwards"
 
13487
+msgstr ""
 
13488
+
 
13489
+#. A city in Illinois in the United States
 
13490
+#: ../data/Locations.xml.in.h:3383
 
13491
+msgid "Effingham"
 
13492
+msgstr ""
 
13493
+
 
13494
+#. A city in Alaska in the United States
 
13495
+#: ../data/Locations.xml.in.h:3385
 
13496
+msgid "Egegik"
 
13497
+msgstr ""
 
13498
+
 
13499
+#. A city in Northern Ireland in the United Kingdom
 
13500
+#: ../data/Locations.xml.in.h:3387
 
13501
+msgid "Eglinton"
 
13502
+msgstr ""
 
13503
+
 
13504
+#. EG - Egypt
 
13505
+#: ../data/Locations.xml.in.h:3389
 
13506
+msgid "Egypt"
 
13507
+msgstr ""
 
13508
+
 
13509
+#. A city in the Netherlands
 
13510
+#: ../data/Locations.xml.in.h:3391
 
13511
+msgid "Eindhoven"
 
13512
+msgstr ""
 
13513
+
 
13514
+#. A city in Iceland
 
13515
+#: ../data/Locations.xml.in.h:3393
 
13516
+msgid "Eiðar"
 
13517
+msgstr ""
 
13518
+
 
13519
+#. A city in Tunisia
 
13520
+#: ../data/Locations.xml.in.h:3395
 
13521
+msgid "El Borma"
 
13522
+msgstr ""
 
13523
+
 
13524
+#. A city in California in the United States
 
13525
+#: ../data/Locations.xml.in.h:3397
 
13526
+msgid "El Centro"
 
13527
+msgstr ""
 
13528
+
 
13529
+#. A city in Arkansas in the United States
 
13530
+#: ../data/Locations.xml.in.h:3399
 
13531
+msgid "El Dorado"
 
13532
+msgstr ""
 
13533
+
 
13534
+#. A city in Algeria
 
13535
+#: ../data/Locations.xml.in.h:3401
 
13536
+msgid "El Golea"
 
13537
+msgstr ""
 
13538
+
 
13539
+#. A city in Spain
 
13540
+#: ../data/Locations.xml.in.h:3403
 
13541
+msgid "El Matorral"
 
13542
+msgstr ""
 
13543
+
 
13544
+#. A city in California in the United States
 
13545
+#: ../data/Locations.xml.in.h:3405
 
13546
+msgid "El Monte"
 
13547
+msgstr ""
 
13548
+
 
13549
+#. A city in Argentina
 
13550
+#: ../data/Locations.xml.in.h:3407
 
13551
+msgid "El Palomar"
 
13552
+msgstr ""
 
13553
+
 
13554
+#. A city in Texas in the United States
 
13555
+#: ../data/Locations.xml.in.h:3409
 
13556
+msgid "El Paso"
 
13557
+msgstr ""
 
13558
+
 
13559
+#. A city in Oklahoma in the United States
 
13560
+#: ../data/Locations.xml.in.h:3411
 
13561
+msgid "El Reno"
 
13562
+msgstr ""
 
13563
+
 
13564
+#. SV - El Salvador
 
13565
+#: ../data/Locations.xml.in.h:3413
 
13566
+msgid "El Salvador"
 
13567
+msgstr ""
 
13568
+
 
13569
+#. A city in Venezuela
 
13570
+#: ../data/Locations.xml.in.h:3415
 
13571
+msgid "El Variante"
 
13572
+msgstr ""
 
13573
+
 
13574
+#. A city in Venezuela
 
13575
+#: ../data/Locations.xml.in.h:3417
 
13576
+msgid "El Vigía"
 
13577
+msgstr ""
 
13578
+
 
13579
+#. A city in Oaxaca in Mexico
 
13580
+#: ../data/Locations.xml.in.h:3419
 
13581
+msgid "El Zapote"
 
13582
+msgstr ""
 
13583
+
 
13584
+#. A city in Israel
 
13585
+#: ../data/Locations.xml.in.h:3421
 
13586
+msgid "Elat"
 
13587
+msgstr ""
 
13588
+
 
13589
+#. A city in Colorado in the United States
 
13590
+#: ../data/Locations.xml.in.h:3423
 
13591
+msgid "Elbert"
 
13592
+msgstr ""
 
13593
+
 
13594
+#. A city in Kenya
 
13595
+#: ../data/Locations.xml.in.h:3425
 
13596
+msgid "Eldoret"
 
13597
+msgstr ""
 
13598
+
 
13599
+#. A city in Norway
 
13600
+#: ../data/Locations.xml.in.h:3427
 
13601
+msgid "Eldskog"
 
13602
+msgstr ""
 
13603
+
 
13604
+#. A city in Greece
 
13605
+#: ../data/Locations.xml.in.h:3429
 
13606
+msgid "Elefsís"
 
13607
+msgstr ""
 
13608
+
 
13609
+#. A city in Alaska in the United States
 
13610
+#: ../data/Locations.xml.in.h:3431
 
13611
+msgid "Elfin Cove"
 
13612
+msgstr ""
 
13613
+
 
13614
+#. A city in New Jersey in the United States
 
13615
+#: ../data/Locations.xml.in.h:3433
 
13616
+msgid "Elizabeth"
 
13617
+msgstr ""
 
13618
+
 
13619
+#. A city in North Carolina in the United States
 
13620
+#: ../data/Locations.xml.in.h:3435
 
13621
+msgid "Elizabeth City"
 
13622
+msgstr ""
 
13623
+
 
13624
+#. A city in North Carolina in the United States
 
13625
+#: ../data/Locations.xml.in.h:3437
 
13626
+msgid "Elizabethtown"
 
13627
+msgstr ""
 
13628
+
 
13629
+#. A city in West Virginia in the United States
 
13630
+#: ../data/Locations.xml.in.h:3439
 
13631
+msgid "Elkins"
 
13632
+msgstr ""
 
13633
+
 
13634
+#. A city in Nevada in the United States
 
13635
+#: ../data/Locations.xml.in.h:3441
 
13636
+msgid "Elko"
 
13637
+msgstr ""
 
13638
+
 
13639
+#. A city in Washington in the United States
 
13640
+#: ../data/Locations.xml.in.h:3443
 
13641
+msgid "Ellensburg"
 
13642
+msgstr ""
 
13643
+
 
13644
+#. A city in Ontario in Canada
 
13645
+#: ../data/Locations.xml.in.h:3445
 
13646
+msgid "Elliot Lake"
 
13647
+msgstr ""
 
13648
+
 
13649
+#. A city in Liège in Belgium
 
13650
+#: ../data/Locations.xml.in.h:3447
 
13651
+msgid "Elsenborn"
 
13652
+msgstr ""
 
13653
+
 
13654
+#. A city in Kansas in the United States
 
13655
+#: ../data/Locations.xml.in.h:3449
 
13656
+msgid "Elwood"
 
13657
+msgstr ""
 
13658
+
 
13659
+#. A city in Ohio in the United States
 
13660
+#: ../data/Locations.xml.in.h:3451
 
13661
+msgid "Elyria"
 
13662
+msgstr ""
 
13663
+
 
13664
+#. A city in Alberta in Canada
 
13665
+#: ../data/Locations.xml.in.h:3453
 
13666
+msgid "Embarras Portage"
 
13667
+msgstr ""
 
13668
+
 
13669
+#. A city in California in the United States
 
13670
+#: ../data/Locations.xml.in.h:3455
 
13671
+msgid "Emigrant Gap"
 
13672
+msgstr ""
 
13673
+
 
13674
+#. A city in Alaska in the United States
 
13675
+#: ../data/Locations.xml.in.h:3457
 
13676
+msgid "Emmonak"
 
13677
+msgstr ""
 
13678
+
 
13679
+#. A city in Russia.
 
13680
+#. The local name in Russian is "Энгельс".
 
13681
+#.
 
13682
+#: ../data/Locations.xml.in.h:3461
 
13683
+msgid "Engel's"
 
13684
+msgstr ""
 
13685
+
 
13686
+#. A city in Newfoundland and Labrador in Canada
 
13687
+#: ../data/Locations.xml.in.h:3463
 
13688
+msgid "Englee"
 
13689
+msgstr ""
 
13690
+
 
13691
+#. A city in Oklahoma in the United States
 
13692
+#: ../data/Locations.xml.in.h:3465
 
13693
+msgid "Enid"
 
13694
+msgstr ""
 
13695
+
 
13696
+#. A city in Nunavut in Canada
 
13697
+#: ../data/Locations.xml.in.h:3467
 
13698
+msgid "Ennadai"
 
13699
+msgstr ""
 
13700
+
 
13701
+#. A city in Finland
 
13702
+#: ../data/Locations.xml.in.h:3469
 
13703
+msgid "Enontekiö"
 
13704
+msgstr ""
 
13705
+
 
13706
+#. A city in Saarland in Germany
 
13707
+#: ../data/Locations.xml.in.h:3471
 
13708
+msgid "Ensheim"
 
13709
+msgstr ""
 
13710
+
 
13711
+#. A city in Uganda
 
13712
+#: ../data/Locations.xml.in.h:3473
 
13713
+msgid "Entebbe"
 
13714
+msgstr ""
 
13715
+
 
13716
+#. A city in Washington in the United States
 
13717
+#: ../data/Locations.xml.in.h:3475
 
13718
+msgid "Ephrata"
 
13719
+msgstr ""
 
13720
+
 
13721
+#. GQ - Equatorial Guinea
 
13722
+#: ../data/Locations.xml.in.h:3477
 
13723
+msgid "Equatorial Guinea"
 
13724
+msgstr ""
 
13725
+
 
13726
+#. A city in Pennsylvania in the United States
 
13727
+#: ../data/Locations.xml.in.h:3479
 
13728
+msgid "Erie"
 
13729
+msgstr ""
 
13730
+
 
13731
+#. A city in Ontario in Canada
 
13732
+#: ../data/Locations.xml.in.h:3481
 
13733
+msgid "Erieau"
 
13734
+msgstr ""
 
13735
+
 
13736
+#. ER - Eritrea
 
13737
+#: ../data/Locations.xml.in.h:3483
 
13738
+msgid "Eritrea"
 
13739
+msgstr ""
 
13740
+
 
13741
+#. A city in North Carolina in the United States
 
13742
+#: ../data/Locations.xml.in.h:3485
 
13743
+msgid "Erwin"
 
13744
+msgstr ""
 
13745
+
 
13746
+#. A city in Turkey
 
13747
+#: ../data/Locations.xml.in.h:3487
 
13748
+msgid "Erzurum"
 
13749
+msgstr ""
 
13750
+
 
13751
+#. A city in Denmark
 
13752
+#: ../data/Locations.xml.in.h:3489
 
13753
+msgid "Esbjerg"
 
13754
+msgstr ""
 
13755
+
 
13756
+#. A city in Michigan in the United States
 
13757
+#: ../data/Locations.xml.in.h:3491
 
13758
+msgid "Escanaba"
 
13759
+msgstr ""
 
13760
+
 
13761
+#. A city in California in the United States
 
13762
+#: ../data/Locations.xml.in.h:3493
 
13763
+msgid "Escondido"
 
13764
+msgstr ""
 
13765
+
 
13766
+#. A city in Iran
 
13767
+#: ../data/Locations.xml.in.h:3495
 
13768
+msgid "Esfahan"
 
13769
+msgstr ""
 
13770
+
 
13771
+#. A city in Turkey
 
13772
+#: ../data/Locations.xml.in.h:3497
 
13773
+msgid "Eskisehir"
 
13774
+msgstr ""
 
13775
+
 
13776
+#. A state/province/territory in Brazil
 
13777
+#: ../data/Locations.xml.in.h:3499
 
13778
+msgid "Espírito Santo"
 
13779
+msgstr ""
 
13780
+
 
13781
+#. A city in British Columbia in Canada
 
13782
+#: ../data/Locations.xml.in.h:3501
 
13783
+msgid "Esquimalt"
 
13784
+msgstr ""
 
13785
+
 
13786
+#. A city in Saskatchewan in Canada
 
13787
+#: ../data/Locations.xml.in.h:3503
 
13788
+msgid "Estevan"
 
13789
+msgstr ""
 
13790
+
 
13791
+#. A city in Alberta in Canada
 
13792
+#: ../data/Locations.xml.in.h:3505
 
13793
+msgid "Esther"
 
13794
+msgstr ""
 
13795
+
 
13796
+#. A city in Iowa in the United States
 
13797
+#: ../data/Locations.xml.in.h:3507
 
13798
+msgid "Estherville"
 
13799
+msgstr ""
 
13800
+
 
13801
+#. EE - Estonia
 
13802
+#: ../data/Locations.xml.in.h:3509
 
13803
+msgid "Estonia"
 
13804
+msgstr ""
 
13805
+
 
13806
+#. ET - Ethiopia
 
13807
+#: ../data/Locations.xml.in.h:3511
 
13808
+msgid "Ethiopia"
 
13809
+msgstr ""
 
13810
+
 
13811
+#. A city in Oregon in the United States
 
13812
+#: ../data/Locations.xml.in.h:3513
 
13813
+msgid "Eugene"
 
13814
+msgstr ""
 
13815
+
 
13816
+#. A city in Alaska in the United States
 
13817
+#: ../data/Locations.xml.in.h:3515
 
13818
+msgid "Eureka Roadhouse"
 
13819
+msgstr ""
 
13820
+
 
13821
+#: ../data/Locations.xml.in.h:3516
 
13822
+msgid "Europe"
 
13823
+msgstr ""
 
13824
+
 
13825
+#. A city in Wyoming in the United States
 
13826
+#: ../data/Locations.xml.in.h:3518
 
13827
+msgid "Evanston"
 
13828
+msgstr ""
 
13829
+
 
13830
+#. A city in Indiana in the United States
 
13831
+#: ../data/Locations.xml.in.h:3520
 
13832
+msgid "Evansville"
 
13833
+msgstr ""
 
13834
+
 
13835
+#. A city in Minnesota in the United States
 
13836
+#: ../data/Locations.xml.in.h:3522
 
13837
+msgid "Eveleth"
 
13838
+msgstr ""
 
13839
+
 
13840
+#. A city in Washington in the United States
 
13841
+#: ../data/Locations.xml.in.h:3524
 
13842
+msgid "Everett"
 
13843
+msgstr ""
 
13844
+
 
13845
+#. A city in Alabama in the United States
 
13846
+#: ../data/Locations.xml.in.h:3526
 
13847
+msgid "Evergreen"
 
13848
+msgstr ""
 
13849
+
 
13850
+#. A city in South and South West England in the United
 
13851
+#. Kingdom
 
13852
+#.
 
13853
+#: ../data/Locations.xml.in.h:3530
 
13854
+msgid "Exeter"
 
13855
+msgstr ""
 
13856
+
 
13857
+#. A city in Argentina
 
13858
+#: ../data/Locations.xml.in.h:3532
 
13859
+msgid "Ezeiza"
 
13860
+msgstr ""
 
13861
+
 
13862
+#. A city in Norway
 
13863
+#: ../data/Locations.xml.in.h:3534
 
13864
+msgid "Fagernes"
 
13865
+msgstr ""
 
13866
+
 
13867
+#. A city in Alaska in the United States
 
13868
+#: ../data/Locations.xml.in.h:3536
 
13869
+msgid "Fairbanks"
 
13870
+msgstr ""
 
13871
+
 
13872
+#. A city in Washington in the United States
 
13873
+#: ../data/Locations.xml.in.h:3538
 
13874
+msgid "Fairchild"
 
13875
+msgstr ""
 
13876
+
 
13877
+#. A city in the United Kingdom
 
13878
+#: ../data/Locations.xml.in.h:3540
 
13879
+msgid "Fairford"
 
13880
+msgstr ""
 
13881
+
 
13882
+#. A city in Minnesota in the United States
 
13883
+#: ../data/Locations.xml.in.h:3542
 
13884
+msgid "Fairmont"
 
13885
+msgstr ""
 
13886
+
 
13887
+#. A city in South Dakota in the United States
 
13888
+#: ../data/Locations.xml.in.h:3544
 
13889
+msgid "Faith"
 
13890
+msgstr ""
 
13891
+
 
13892
+#. A city in Texas in the United States
 
13893
+#: ../data/Locations.xml.in.h:3546
 
13894
+msgid "Falfurrias"
 
13895
+msgstr ""
 
13896
+
 
13897
+#. FK - Falkland Islands (Malvinas), a British territory in the
 
13898
+#. South Atlantic also claimed by Argentina. (The British name
 
13899
+#. is "Falkland Islands". The Argentine name is "Islas
 
13900
+#. Malvinas". The parenthesized form is the compromise used by
 
13901
+#. ISO and the UN.)
 
13902
+#.
 
13903
+#: ../data/Locations.xml.in.h:3553
 
13904
+msgid "Falkland Islands (Malvinas)"
 
13905
+msgstr ""
 
13906
+
 
13907
+#. A city in Nevada in the United States
 
13908
+#: ../data/Locations.xml.in.h:3555
 
13909
+msgid "Fallon"
 
13910
+msgstr ""
 
13911
+
 
13912
+#. A city in Nebraska in the United States
 
13913
+#: ../data/Locations.xml.in.h:3557
 
13914
+msgid "Falls City"
 
13915
+msgstr ""
 
13916
+
 
13917
+#. A city in North Dakota in the United States
 
13918
+#: ../data/Locations.xml.in.h:3559
 
13919
+msgid "Fargo"
 
13920
+msgstr ""
 
13921
+
 
13922
+#. A city in Minnesota in the United States
 
13923
+#: ../data/Locations.xml.in.h:3561
 
13924
+msgid "Faribault"
 
13925
+msgstr ""
 
13926
+
 
13927
+#. A city in New York in the United States
 
13928
+#: ../data/Locations.xml.in.h:3563
 
13929
+msgid "Farmingdale"
 
13930
+msgstr ""
 
13931
+
 
13932
+#. A city in Virginia in the United States
 
13933
+#: ../data/Locations.xml.in.h:3565
 
13934
+msgid "Farmville"
 
13935
+msgstr ""
 
13936
+
 
13937
+#. A city in East and South East England in the United
 
13938
+#. Kingdom
 
13939
+#.
 
13940
+#: ../data/Locations.xml.in.h:3569
 
13941
+msgid "Farnborough"
 
13942
+msgstr ""
 
13943
+
 
13944
+#. A city in Portugal
 
13945
+#: ../data/Locations.xml.in.h:3571
 
13946
+msgid "Faro"
 
13947
+msgstr ""
 
13948
+
 
13949
+#. FO - Faroe Islands, an autonomous province of Denmark in the
 
13950
+#. north Atlantic.
 
13951
+#.
 
13952
+#: ../data/Locations.xml.in.h:3575
 
13953
+msgid "Faroe Islands"
 
13954
+msgstr ""
 
13955
+
 
13956
+#. A city in Iran.
 
13957
+#. The name is also written "فسا".
 
13958
+#.
 
13959
+#: ../data/Locations.xml.in.h:3579
 
13960
+msgid "Fasa"
 
13961
+msgstr ""
 
13962
+
 
13963
+#. A city in Madagascar
 
13964
+#: ../data/Locations.xml.in.h:3581
 
13965
+msgid "Fasenina-Ampasy"
 
13966
+msgstr ""
 
13967
+
 
13968
+#. A city in Lower Saxony in Germany
 
13969
+#: ../data/Locations.xml.in.h:3583
 
13970
+msgid "Faßberg"
 
13971
+msgstr ""
 
13972
+
 
13973
+#. A city in Minnesota in the United States
 
13974
+#: ../data/Locations.xml.in.h:3585
 
13975
+msgid "Fergus Falls"
 
13976
+msgstr ""
 
13977
+
 
13978
+#. This represents the time zone on the Brazilian island of
 
13979
+#. Fernando de Noronha. See the comment on "Brasília Time"
 
13980
+#. for more details. This string is only used in places
 
13981
+#. where "Brazil" is already clear from context.
 
13982
+#.
 
13983
+#: ../data/Locations.xml.in.h:3591
 
13984
+msgid "Fernando de Noronha"
 
13985
+msgstr ""
 
13986
+
 
13987
+#. A city in Newfoundland and Labrador in Canada
 
13988
+#: ../data/Locations.xml.in.h:3593
 
13989
+msgid "Ferolle Point"
 
13990
+msgstr ""
 
13991
+
 
13992
+#. A city in Italy
 
13993
+#: ../data/Locations.xml.in.h:3595
 
13994
+msgid "Ferrara"
 
13995
+msgstr ""
 
13996
+
 
13997
+#. A city in Morocco
 
13998
+#: ../data/Locations.xml.in.h:3597
 
13999
+msgid "Fes"
 
14000
+msgstr ""
 
14001
+
 
14002
+#. FJ - Fiji
 
14003
+#: ../data/Locations.xml.in.h:3599
 
14004
+msgid "Fiji"
 
14005
+msgstr ""
 
14006
+
 
14007
+#. A city in South and South West England in the United
 
14008
+#. Kingdom
 
14009
+#.
 
14010
+#: ../data/Locations.xml.in.h:3603
 
14011
+msgid "Filton"
 
14012
+msgstr ""
 
14013
+
 
14014
+#. A city in Ohio in the United States
 
14015
+#: ../data/Locations.xml.in.h:3605
 
14016
+msgid "Findlay"
 
14017
+msgstr ""
 
14018
+
 
14019
+#. FI - Finland
 
14020
+#: ../data/Locations.xml.in.h:3607
 
14021
+msgid "Finland"
 
14022
+msgstr ""
 
14023
+
 
14024
+#. A city in Norway
 
14025
+#: ../data/Locations.xml.in.h:3609
 
14026
+msgid "Fiskenes"
 
14027
+msgstr ""
 
14028
+
 
14029
+#. A city in Massachusetts in the United States
 
14030
+#: ../data/Locations.xml.in.h:3611
 
14031
+msgid "Fitchburg"
 
14032
+msgstr ""
 
14033
+
 
14034
+#. A city in Antigua and Barbuda
 
14035
+#: ../data/Locations.xml.in.h:3613
 
14036
+msgid "Fitches Creek"
 
14037
+msgstr ""
 
14038
+
 
14039
+#. A city in Arizona in the United States
 
14040
+#: ../data/Locations.xml.in.h:3615
 
14041
+msgid "Flagstaff"
 
14042
+msgstr ""
 
14043
+
 
14044
+#. A city in Norway
 
14045
+#: ../data/Locations.xml.in.h:3617
 
14046
+msgid "Flesland"
 
14047
+msgstr ""
 
14048
+
 
14049
+#. A city in Manitoba in Canada
 
14050
+#: ../data/Locations.xml.in.h:3619
 
14051
+msgid "Flin Flon"
 
14052
+msgstr ""
 
14053
+
 
14054
+#. A city in Michigan in the United States
 
14055
+#: ../data/Locations.xml.in.h:3621
 
14056
+msgid "Flint"
 
14057
+msgstr ""
 
14058
+
 
14059
+#. A city in Arkansas in the United States
 
14060
+#: ../data/Locations.xml.in.h:3623
 
14061
+msgid "Flippin"
 
14062
+msgstr ""
 
14063
+
 
14064
+#. A city in Portugal
 
14065
+#: ../data/Locations.xml.in.h:3625
 
14066
+msgid "Flor da Rosa"
 
14067
+msgstr ""
 
14068
+
 
14069
+#. A city in Illinois in the United States
 
14070
+#: ../data/Locations.xml.in.h:3627
 
14071
+msgid "Flora"
 
14072
+msgstr ""
 
14073
+
 
14074
+#. A city in Namur in Belgium
 
14075
+#: ../data/Locations.xml.in.h:3629
 
14076
+msgid "Florennes"
 
14077
+msgstr ""
 
14078
+
 
14079
+#. A city in Santa Catarina in Brazil
 
14080
+#: ../data/Locations.xml.in.h:3631
 
14081
+msgid "Florianópolis"
 
14082
+msgstr ""
 
14083
+
 
14084
+#. A state/province/territory in United States
 
14085
+#: ../data/Locations.xml.in.h:3633
 
14086
+msgid "Florida"
 
14087
+msgstr ""
 
14088
+
 
14089
+#. A city in Norway
 
14090
+#: ../data/Locations.xml.in.h:3635
 
14091
+msgid "Florø"
 
14092
+msgstr ""
 
14093
+
 
14094
+#. The capital of Christmas Island
 
14095
+#: ../data/Locations.xml.in.h:3637
 
14096
+msgid "Flying Fish Cove"
 
14097
+msgstr ""
 
14098
+
 
14099
+#. A city in Wisconsin in the United States
 
14100
+#: ../data/Locations.xml.in.h:3639
 
14101
+msgid "Fond du Lac"
 
14102
+msgstr ""
 
14103
+
 
14104
+#. A city in California in the United States
 
14105
+#: ../data/Locations.xml.in.h:3641
 
14106
+msgid "Fontana"
 
14107
+msgstr ""
 
14108
+
 
14109
+#. A city in New South Wales in Australia
 
14110
+#: ../data/Locations.xml.in.h:3643
 
14111
+msgid "Forest Hill"
 
14112
+msgstr ""
 
14113
+
 
14114
+#. A city in Italy
 
14115
+#: ../data/Locations.xml.in.h:3645
 
14116
+msgid "Forlì"
 
14117
+msgstr ""
 
14118
+
 
14119
+#. A city in Argentina
 
14120
+#: ../data/Locations.xml.in.h:3647
 
14121
+msgid "Formosa"
 
14122
+msgstr ""
 
14123
+
 
14124
+#. A city in Georgia in the United States
 
14125
+#: ../data/Locations.xml.in.h:3649
 
14126
+msgid "Fort Benning"
 
14127
+msgstr ""
 
14128
+
 
14129
+#. A city in Colorado in the United States
 
14130
+#: ../data/Locations.xml.in.h:3651
 
14131
+msgid "Fort Carson"
 
14132
+msgstr ""
 
14133
+
 
14134
+#. A city in Alberta in Canada
 
14135
+#: ../data/Locations.xml.in.h:3653
 
14136
+msgid "Fort Chipewyan"
 
14137
+msgstr ""
 
14138
+
 
14139
+#. A city in Colorado in the United States
 
14140
+#: ../data/Locations.xml.in.h:3655
 
14141
+msgid "Fort Collins"
 
14142
+msgstr ""
 
14143
+
 
14144
+#. A city in Iowa in the United States
 
14145
+#: ../data/Locations.xml.in.h:3657
 
14146
+msgid "Fort Dodge"
 
14147
+msgstr ""
 
14148
+
 
14149
+#. A city in Northwest Territories in Canada
 
14150
+#: ../data/Locations.xml.in.h:3659
 
14151
+msgid "Fort Good Hope"
 
14152
+msgstr ""
 
14153
+
 
14154
+#. A city in British Columbia in Canada
 
14155
+#: ../data/Locations.xml.in.h:3661
 
14156
+msgid "Fort Grahame"
 
14157
+msgstr ""
 
14158
+
 
14159
+#. A city in Florida in the United States
 
14160
+#: ../data/Locations.xml.in.h:3663
 
14161
+msgid "Fort Lauderdale"
 
14162
+msgstr ""
 
14163
+
 
14164
+#. A city in Iowa in the United States
 
14165
+#: ../data/Locations.xml.in.h:3665
 
14166
+msgid "Fort Madison"
 
14167
+msgstr ""
 
14168
+
 
14169
+#. A city in Alberta in Canada
 
14170
+#: ../data/Locations.xml.in.h:3667
 
14171
+msgid "Fort McMurray"
 
14172
+msgstr ""
 
14173
+
 
14174
+#. A city in Florida in the United States
 
14175
+#: ../data/Locations.xml.in.h:3669
 
14176
+msgid "Fort Myers"
 
14177
+msgstr ""
 
14178
+
 
14179
+#. A city in British Columbia in Canada
 
14180
+#: ../data/Locations.xml.in.h:3671
 
14181
+msgid "Fort Nelson"
 
14182
+msgstr ""
 
14183
+
 
14184
+#. A city in Alabama in the United States
 
14185
+#: ../data/Locations.xml.in.h:3673
 
14186
+msgid "Fort Payne"
 
14187
+msgstr ""
 
14188
+
 
14189
+#. A city in Florida in the United States
 
14190
+#: ../data/Locations.xml.in.h:3675
 
14191
+msgid "Fort Pierce"
 
14192
+msgstr ""
 
14193
+
 
14194
+#. A city in Louisiana in the United States
 
14195
+#: ../data/Locations.xml.in.h:3677
 
14196
+msgid "Fort Polk"
 
14197
+msgstr ""
 
14198
+
 
14199
+#. A city in Northwest Territories in Canada
 
14200
+#: ../data/Locations.xml.in.h:3679
 
14201
+msgid "Fort Providence"
 
14202
+msgstr ""
 
14203
+
 
14204
+#. A city in Northwest Territories in Canada
 
14205
+#: ../data/Locations.xml.in.h:3681
 
14206
+msgid "Fort Simpson"
 
14207
+msgstr ""
 
14208
+
 
14209
+#. A city in Texas in the United States
 
14210
+#: ../data/Locations.xml.in.h:3683
 
14211
+msgid "Fort Stockton"
 
14212
+msgstr ""
 
14213
+
 
14214
+#. A city in Florida in the United States
 
14215
+#: ../data/Locations.xml.in.h:3685
 
14216
+msgid "Fort Walton Beach"
 
14217
+msgstr ""
 
14218
+
 
14219
+#. A city in Indiana in the United States
 
14220
+#: ../data/Locations.xml.in.h:3687
 
14221
+msgid "Fort Wayne"
 
14222
+msgstr ""
 
14223
+
 
14224
+#. A city in Texas in the United States
 
14225
+#: ../data/Locations.xml.in.h:3689
 
14226
+msgid "Fort Worth"
 
14227
+msgstr ""
 
14228
+
 
14229
+#. A city in Alaska in the United States
 
14230
+#: ../data/Locations.xml.in.h:3691
 
14231
+msgid "Fort Yukon"
 
14232
+msgstr ""
 
14233
+
 
14234
+#. A city in Quebec in Canada
 
14235
+#: ../data/Locations.xml.in.h:3693
 
14236
+msgid "Fort-Rupert"
 
14237
+msgstr ""
 
14238
+
 
14239
+#. The capital of Martinique
 
14240
+#: ../data/Locations.xml.in.h:3695
 
14241
+msgid "Fort-de-France"
 
14242
+msgstr ""
 
14243
+
 
14244
+#. A city in Ceará in Brazil
 
14245
+#: ../data/Locations.xml.in.h:3697
 
14246
+msgid "Fortaleza"
 
14247
+msgstr ""
 
14248
+
 
14249
+#. A city in Minnesota in the United States
 
14250
+#: ../data/Locations.xml.in.h:3699
 
14251
+msgid "Fosston"
 
14252
+msgstr ""
 
14253
+
 
14254
+#. A city in Paraná in Brazil
 
14255
+#: ../data/Locations.xml.in.h:3701
 
14256
+msgid "Foz do Iguaçu"
 
14257
+msgstr ""
 
14258
+
 
14259
+#. FR - France
 
14260
+#: ../data/Locations.xml.in.h:3703
 
14261
+msgid "France"
 
14262
+msgstr ""
 
14263
+
 
14264
+#. A city in Gabon
 
14265
+#: ../data/Locations.xml.in.h:3705
 
14266
+msgid "Franceville"
 
14267
+msgstr ""
 
14268
+
 
14269
+#. A city in Botswana
 
14270
+#: ../data/Locations.xml.in.h:3707
 
14271
+msgid "Francistown"
 
14272
+msgstr ""
 
14273
+
 
14274
+#. A city in Hesse in Germany
 
14275
+#: ../data/Locations.xml.in.h:3709
 
14276
+msgid "Frankfurt"
 
14277
+msgstr ""
 
14278
+
 
14279
+#. A city in Texas in the United States
 
14280
+#: ../data/Locations.xml.in.h:3711
 
14281
+msgid "Fredericksburg"
 
14282
+msgstr ""
 
14283
+
 
14284
+#. A city in New Brunswick in Canada
 
14285
+#: ../data/Locations.xml.in.h:3713
 
14286
+msgid "Fredericton"
 
14287
+msgstr ""
 
14288
+
 
14289
+#. The capital of Sierra Leone
 
14290
+#: ../data/Locations.xml.in.h:3715
 
14291
+msgid "Freetown"
 
14292
+msgstr ""
 
14293
+
 
14294
+#. GF - French Guiana, an overseas department of France on the
 
14295
+#. northern coast of South America.
 
14296
+#.
 
14297
+#: ../data/Locations.xml.in.h:3719
 
14298
+msgid "French Guiana"
 
14299
+msgstr ""
 
14300
+
 
14301
+#. PF - French Polynesia, a French territory in the South
 
14302
+#. Pacific
 
14303
+#.
 
14304
+#: ../data/Locations.xml.in.h:3723
 
14305
+msgid "French Polynesia"
 
14306
+msgstr ""
 
14307
+
 
14308
+#. TF - French Southern Territories, a territory of France
 
14309
+#. consisting of several mostly-uninhabited islands in the
 
14310
+#. Indian Ocean. The French name is "Terres australes
 
14311
+#. françaises".
 
14312
+#.
 
14313
+#: ../data/Locations.xml.in.h:3729
 
14314
+msgid "French Southern Territories"
 
14315
+msgstr ""
 
14316
+
 
14317
+#. A city in Maine in the United States
 
14318
+#: ../data/Locations.xml.in.h:3731
 
14319
+msgid "Frenchville"
 
14320
+msgstr ""
 
14321
+
 
14322
+#. A city in California in the United States
 
14323
+#: ../data/Locations.xml.in.h:3733
 
14324
+msgid "Fresno"
 
14325
+msgstr ""
 
14326
+
 
14327
+#. A city in Washington in the United States
 
14328
+#: ../data/Locations.xml.in.h:3735
 
14329
+msgid "Friday Harbor"
 
14330
+msgstr ""
 
14331
+
 
14332
+#. A city in Baden-Württemberg in Germany
 
14333
+#: ../data/Locations.xml.in.h:3737
 
14334
+msgid "Friedrichshafen"
 
14335
+msgstr ""
 
14336
+
 
14337
+#. A city in Hesse in Germany
 
14338
+#: ../data/Locations.xml.in.h:3739
 
14339
+msgid "Fritzlar"
 
14340
+msgstr ""
 
14341
+
 
14342
+#. A city in Ontario in Canada
 
14343
+#: ../data/Locations.xml.in.h:3741
 
14344
+msgid "Front of Escott"
 
14345
+msgstr ""
 
14346
+
 
14347
+#. A city in Italy
 
14348
+#: ../data/Locations.xml.in.h:3743
 
14349
+msgid "Frosinone"
 
14350
+msgstr ""
 
14351
+
 
14352
+#. A city in Maine in the United States
 
14353
+#: ../data/Locations.xml.in.h:3745
 
14354
+msgid "Fryeburg"
 
14355
+msgstr ""
 
14356
+
 
14357
+#. A city in Tonga
 
14358
+#: ../data/Locations.xml.in.h:3747
 
14359
+msgid "Fua'amotu"
 
14360
+msgstr ""
 
14361
+
 
14362
+#. A city in Spain
 
14363
+#: ../data/Locations.xml.in.h:3749
 
14364
+msgid "Fuenterrabía"
 
14365
+msgstr ""
 
14366
+
 
14367
+#. A city in Panama
 
14368
+#: ../data/Locations.xml.in.h:3751
 
14369
+msgid "Fuerte Kobbe"
 
14370
+msgstr ""
 
14371
+
 
14372
+#. A city in Japan
 
14373
+#: ../data/Locations.xml.in.h:3753
 
14374
+msgid "Fuji"
 
14375
+msgstr ""
 
14376
+
 
14377
+#. A state/province/territory in China
 
14378
+#: ../data/Locations.xml.in.h:3755
 
14379
+msgid "Fujian"
 
14380
+msgstr ""
 
14381
+
 
14382
+#. A city in Japan
 
14383
+#: ../data/Locations.xml.in.h:3757
 
14384
+msgid "Fukue"
 
14385
+msgstr ""
 
14386
+
 
14387
+#. A city in Japan
 
14388
+#: ../data/Locations.xml.in.h:3759
 
14389
+msgid "Fukuoka"
 
14390
+msgstr ""
 
14391
+
 
14392
+#. A city in California in the United States
 
14393
+#: ../data/Locations.xml.in.h:3761
 
14394
+msgid "Fullerton"
 
14395
+msgstr ""
 
14396
+
 
14397
+#. A city in New York in the United States
 
14398
+#: ../data/Locations.xml.in.h:3763
 
14399
+msgid "Fulton"
 
14400
+msgstr ""
 
14401
+
 
14402
+#. The capital of Tuvalu
 
14403
+#: ../data/Locations.xml.in.h:3765
 
14404
+msgid "Funafuti"
 
14405
+msgstr ""
 
14406
+
 
14407
+#. A city in Japan
 
14408
+#: ../data/Locations.xml.in.h:3767
 
14409
+msgid "Futemma"
 
14410
+msgstr ""
 
14411
+
 
14412
+#. A city in Fujian in China.
 
14413
+#. The name is also written "福州".
 
14414
+#.
 
14415
+#: ../data/Locations.xml.in.h:3771
 
14416
+msgid "Fuzhou"
 
14417
+msgstr ""
 
14418
+
 
14419
+#. A city in Norway
 
14420
+#: ../data/Locations.xml.in.h:3773
 
14421
+msgid "Førde"
 
14422
+msgstr ""
 
14423
+
 
14424
+#. The time zone in the UK (GMT in the winter, and British
 
14425
+#. Summer Time in the summer.)
 
14426
+#.
 
14427
+#: ../data/Locations.xml.in.h:3777
 
14428
+msgid "GMT/BST"
 
14429
+msgstr ""
 
14430
+
 
14431
+#. The time zone in Ireland (GMT in the winter, and Irish
 
14432
+#. Summer Time in the summer.)
 
14433
+#.
 
14434
+#: ../data/Locations.xml.in.h:3781
 
14435
+msgid "GMT/IST"
 
14436
+msgstr ""
 
14437
+
 
14438
+#. A city in Tunisia
 
14439
+#: ../data/Locations.xml.in.h:3783
 
14440
+msgid "Gabes"
 
14441
+msgstr ""
 
14442
+
 
14443
+#. GA - Gabon
 
14444
+#: ../data/Locations.xml.in.h:3785
 
14445
+msgid "Gabon"
 
14446
+msgstr ""
 
14447
+
 
14448
+#. The capital of Botswana
 
14449
+#: ../data/Locations.xml.in.h:3787
 
14450
+msgid "Gaborone"
 
14451
+msgstr ""
 
14452
+
 
14453
+#. A city in British Columbia in Canada
 
14454
+#: ../data/Locations.xml.in.h:3789
 
14455
+msgid "Gabriola"
 
14456
+msgstr ""
 
14457
+
 
14458
+#. A city in Alabama in the United States
 
14459
+#: ../data/Locations.xml.in.h:3791
 
14460
+msgid "Gadsden"
 
14461
+msgstr ""
 
14462
+
 
14463
+#. A city in Tunisia
 
14464
+#: ../data/Locations.xml.in.h:3793
 
14465
+msgid "Gafsa"
 
14466
+msgstr ""
 
14467
+
 
14468
+#. A city in Oklahoma in the United States
 
14469
+#: ../data/Locations.xml.in.h:3795
 
14470
+msgid "Gage"
 
14471
+msgstr ""
 
14472
+
 
14473
+#. A city in New Brunswick in Canada
 
14474
+#: ../data/Locations.xml.in.h:3797
 
14475
+msgid "Gagetown"
 
14476
+msgstr ""
 
14477
+
 
14478
+#. The time zone for the Galapagos Islands.
 
14479
+#: ../data/Locations.xml.in.h:3799
 
14480
+msgid "Galapagos Islands"
 
14481
+msgstr ""
 
14482
+
 
14483
+#. A city in Alaska in the United States
 
14484
+#: ../data/Locations.xml.in.h:3801
 
14485
+msgid "Galena"
 
14486
+msgstr ""
 
14487
+
 
14488
+#. A city in Illinois in the United States
 
14489
+#: ../data/Locations.xml.in.h:3803
 
14490
+msgid "Galesburg"
 
14491
+msgstr ""
 
14492
+
 
14493
+#. A city in Louisiana in the United States
 
14494
+#: ../data/Locations.xml.in.h:3805
 
14495
+msgid "Galliano"
 
14496
+msgstr ""
 
14497
+
 
14498
+#. A city in New Mexico in the United States
 
14499
+#: ../data/Locations.xml.in.h:3807
 
14500
+msgid "Gallup"
 
14501
+msgstr ""
 
14502
+
 
14503
+#. A city in Texas in the United States
 
14504
+#: ../data/Locations.xml.in.h:3809
 
14505
+msgid "Galveston"
 
14506
+msgstr ""
 
14507
+
 
14508
+#. A city in Alaska in the United States
 
14509
+#: ../data/Locations.xml.in.h:3811
 
14510
+msgid "Gambell"
 
14511
+msgstr ""
 
14512
+
 
14513
+#. GM - Gambia
 
14514
+#: ../data/Locations.xml.in.h:3813
 
14515
+msgid "Gambia"
 
14516
+msgstr ""
 
14517
+
 
14518
+#. This refers to the time zone in the Gambier Islands of
 
14519
+#. French Polynesia. This string is only used in places
 
14520
+#. where "French Polynesia" is already clear from context.
 
14521
+#.
 
14522
+#: ../data/Locations.xml.in.h:3818
 
14523
+msgid "Gambier Islands"
 
14524
+msgstr ""
 
14525
+
 
14526
+#. A city in Azerbaijan
 
14527
+#: ../data/Locations.xml.in.h:3820
 
14528
+msgid "Ganca"
 
14529
+msgstr ""
 
14530
+
 
14531
+#. A city in Newfoundland and Labrador in Canada
 
14532
+#: ../data/Locations.xml.in.h:3822
 
14533
+msgid "Gander"
 
14534
+msgstr ""
 
14535
+
 
14536
+#. A city in Spain
 
14537
+#: ../data/Locations.xml.in.h:3824
 
14538
+msgid "Gando"
 
14539
+msgstr ""
 
14540
+
 
14541
+#. A state/province/territory in China
 
14542
+#: ../data/Locations.xml.in.h:3826
 
14543
+msgid "Gansu"
 
14544
+msgstr ""
 
14545
+
 
14546
+#. A city in California in the United States
 
14547
+#: ../data/Locations.xml.in.h:3828
 
14548
+msgid "Garden Grove"
 
14549
+msgstr ""
 
14550
+
 
14551
+#. A city in Norway
 
14552
+#: ../data/Locations.xml.in.h:3830
 
14553
+msgid "Gardermoen"
 
14554
+msgstr ""
 
14555
+
 
14556
+#. A city in Texas in the United States
 
14557
+#: ../data/Locations.xml.in.h:3832
 
14558
+msgid "Garland"
 
14559
+msgstr ""
 
14560
+
 
14561
+#. A city in Cameroon
 
14562
+#: ../data/Locations.xml.in.h:3834
 
14563
+msgid "Garoua"
 
14564
+msgstr ""
 
14565
+
 
14566
+#. A city in North Dakota in the United States
 
14567
+#: ../data/Locations.xml.in.h:3836
 
14568
+msgid "Garrison"
 
14569
+msgstr ""
 
14570
+
 
14571
+#. A city in Indiana in the United States
 
14572
+#: ../data/Locations.xml.in.h:3838
 
14573
+msgid "Gary"
 
14574
+msgstr ""
 
14575
+
 
14576
+#. A city in Quebec in Canada
 
14577
+#: ../data/Locations.xml.in.h:3840
 
14578
+msgid "Gaspé"
 
14579
+msgstr ""
 
14580
+
 
14581
+#. A city in North Carolina in the United States
 
14582
+#: ../data/Locations.xml.in.h:3842
 
14583
+msgid "Gastonia"
 
14584
+msgstr ""
 
14585
+
 
14586
+#. A city in Texas in the United States
 
14587
+#: ../data/Locations.xml.in.h:3844
 
14588
+msgid "Gatesville"
 
14589
+msgstr ""
 
14590
+
 
14591
+#. A city in Quebec in Canada
 
14592
+#: ../data/Locations.xml.in.h:3846
 
14593
+msgid "Gatineau"
 
14594
+msgstr ""
 
14595
+
 
14596
+#. A city in the Netherlands Antilles
 
14597
+#: ../data/Locations.xml.in.h:3848
 
14598
+msgid "Gato"
 
14599
+msgstr ""
 
14600
+
 
14601
+#. A city in Michigan in the United States
 
14602
+#: ../data/Locations.xml.in.h:3850
 
14603
+msgid "Gaylord"
 
14604
+msgstr ""
 
14605
+
 
14606
+#. A city in Turkey
 
14607
+#: ../data/Locations.xml.in.h:3852
 
14608
+msgid "Gaziantep"
 
14609
+msgstr ""
 
14610
+
 
14611
+#. A city in Poland
 
14612
+#: ../data/Locations.xml.in.h:3854
 
14613
+msgid "Gdańsk"
 
14614
+msgstr ""
 
14615
+
 
14616
+#. A city in North Rhine-Westphalia in Germany
 
14617
+#: ../data/Locations.xml.in.h:3856
 
14618
+msgid "Geilenkirchen"
 
14619
+msgstr ""
 
14620
+
 
14621
+#. A city in Switzerland.
 
14622
+#. "Geneva" is the traditional English name.
 
14623
+#. The local name is "Genève".
 
14624
+#.
 
14625
+#: ../data/Locations.xml.in.h:3861
 
14626
+msgid "Geneva"
 
14627
+msgstr ""
 
14628
+
 
14629
+#. A city in Italy.
 
14630
+#. "Genoa" is the traditional English name.
 
14631
+#. The local name in Italian is "Genova".
 
14632
+#.
 
14633
+#: ../data/Locations.xml.in.h:3866
 
14634
+msgid "Genoa"
 
14635
+msgstr ""
 
14636
+
 
14637
+#. A city in Ontario in Canada
 
14638
+#: ../data/Locations.xml.in.h:3868
 
14639
+msgid "Geraldton"
 
14640
+msgstr ""
 
14641
+
 
14642
+#. DE - Germany
 
14643
+#: ../data/Locations.xml.in.h:3870
 
14644
+msgid "Germany"
 
14645
+msgstr ""
 
14646
+
 
14647
+#. A city in Spain
 
14648
+#: ../data/Locations.xml.in.h:3872
 
14649
+msgid "Gerona"
 
14650
+msgstr ""
 
14651
+
 
14652
+#. A city in Spain
 
14653
+#: ../data/Locations.xml.in.h:3874
 
14654
+msgid "Getafe"
 
14655
+msgstr ""
 
14656
+
 
14657
+#. GH - Ghana
 
14658
+#: ../data/Locations.xml.in.h:3876
 
14659
+msgid "Ghana"
 
14660
+msgstr ""
 
14661
+
 
14662
+#. A city in Botswana
 
14663
+#: ../data/Locations.xml.in.h:3878
 
14664
+msgid "Ghanzi"
 
14665
+msgstr ""
 
14666
+
 
14667
+#. A city in Algeria
 
14668
+#: ../data/Locations.xml.in.h:3880
 
14669
+msgid "Ghardaia"
 
14670
+msgstr ""
 
14671
+
 
14672
+#. A city in Texas in the United States
 
14673
+#: ../data/Locations.xml.in.h:3882
 
14674
+msgid "Giddings"
 
14675
+msgstr ""
 
14676
+
 
14677
+#. A city in Japan
 
14678
+#: ../data/Locations.xml.in.h:3884
 
14679
+msgid "Gifu"
 
14680
+msgstr ""
 
14681
+
 
14682
+#. A city in Arizona in the United States
 
14683
+#: ../data/Locations.xml.in.h:3886
 
14684
+msgid "Gilbert"
 
14685
+msgstr ""
 
14686
+
 
14687
+#. The time zone in the Gilbert Islands, one of the three
 
14688
+#. main island groups of Kiribati. This string is only used
 
14689
+#. in places where "Kiribati" is already clear from context.
 
14690
+#.
 
14691
+#: ../data/Locations.xml.in.h:3891
 
14692
+msgid "Gilbert Islands"
 
14693
+msgstr ""
 
14694
+
 
14695
+#. A city in Manitoba in Canada
 
14696
+#: ../data/Locations.xml.in.h:3893
 
14697
+msgid "Gillam"
 
14698
+msgstr ""
 
14699
+
 
14700
+#. A city in Wyoming in the United States
 
14701
+#: ../data/Locations.xml.in.h:3895
 
14702
+msgid "Gillette"
 
14703
+msgstr ""
 
14704
+
 
14705
+#. A city in Texas in the United States
 
14706
+#: ../data/Locations.xml.in.h:3897
 
14707
+msgid "Gilmer"
 
14708
+msgstr ""
 
14709
+
 
14710
+#. A city in the Netherlands
 
14711
+#: ../data/Locations.xml.in.h:3899
 
14712
+msgid "Gilze"
 
14713
+msgstr ""
 
14714
+
 
14715
+#. A city in Manitoba in Canada
 
14716
+#: ../data/Locations.xml.in.h:3901
 
14717
+msgid "Gimli"
 
14718
+msgstr ""
 
14719
+
 
14720
+#. A city in Italy
 
14721
+#: ../data/Locations.xml.in.h:3903
 
14722
+msgid "Ginosa Marina"
 
14723
+msgstr ""
 
14724
+
 
14725
+#. A city in Italy
 
14726
+#: ../data/Locations.xml.in.h:3905
 
14727
+msgid "Gioia del Colle"
 
14728
+msgstr ""
 
14729
+
 
14730
+#. A city in Nunavut in Canada
 
14731
+#: ../data/Locations.xml.in.h:3907
 
14732
+msgid "Gjoa Haven"
 
14733
+msgstr ""
 
14734
+
 
14735
+#. A city in Minnesota in the United States
 
14736
+#: ../data/Locations.xml.in.h:3909
 
14737
+msgid "Glencoe"
 
14738
+msgstr ""
 
14739
+
 
14740
+#. A city in Montana in the United States
 
14741
+#: ../data/Locations.xml.in.h:3911
 
14742
+msgid "Glendive"
 
14743
+msgstr ""
 
14744
+
 
14745
+#. A city in New York in the United States
 
14746
+#: ../data/Locations.xml.in.h:3913
 
14747
+msgid "Glens Falls"
 
14748
+msgstr ""
 
14749
+
 
14750
+#. A city in Ireland
 
14751
+#: ../data/Locations.xml.in.h:3915
 
14752
+msgid "Glentavraun"
 
14753
+msgstr ""
 
14754
+
 
14755
+#. A city in Minnesota in the United States
 
14756
+#: ../data/Locations.xml.in.h:3917
 
14757
+msgid "Glenwood"
 
14758
+msgstr ""
 
14759
+
 
14760
+#. A city in Ontario in Canada
 
14761
+#: ../data/Locations.xml.in.h:3919
 
14762
+msgid "Goderich"
 
14763
+msgstr ""
 
14764
+
 
14765
+#. The capital of Greenland.
 
14766
+#. The local name in Kalaallisut is "Nuuk".
 
14767
+#.
 
14768
+#: ../data/Locations.xml.in.h:3923
 
14769
+msgid "Godthåb"
 
14770
+msgstr ""
 
14771
+
 
14772
+#. A state/province/territory in Brazil
 
14773
+#: ../data/Locations.xml.in.h:3925
 
14774
+msgid "Goiás"
 
14775
+msgstr ""
 
14776
+
 
14777
+#. A city in Goiás in Brazil
 
14778
+#: ../data/Locations.xml.in.h:3927
 
14779
+msgid "Goiânia"
 
14780
+msgstr ""
 
14781
+
 
14782
+#. A city in British Columbia in Canada
 
14783
+#: ../data/Locations.xml.in.h:3929
 
14784
+msgid "Golden"
 
14785
+msgstr ""
 
14786
+
 
14787
+#. A city in Saint Kitts and Nevis
 
14788
+#: ../data/Locations.xml.in.h:3931
 
14789
+msgid "Golden Rock"
 
14790
+msgstr ""
 
14791
+
 
14792
+#. A city in North Carolina in the United States
 
14793
+#: ../data/Locations.xml.in.h:3933
 
14794
+msgid "Goldsboro"
 
14795
+msgstr ""
 
14796
+
 
14797
+#. A city in Kansas in the United States
 
14798
+#: ../data/Locations.xml.in.h:3935
 
14799
+msgid "Goodland"
 
14800
+msgstr ""
 
14801
+
 
14802
+#. A city in Arizona in the United States
 
14803
+#: ../data/Locations.xml.in.h:3937
 
14804
+msgid "Goodyear"
 
14805
+msgstr ""
 
14806
+
 
14807
+#. A city in Newfoundland and Labrador in Canada
 
14808
+#: ../data/Locations.xml.in.h:3939
 
14809
+msgid "Goose Bay"
 
14810
+msgstr ""
 
14811
+
 
14812
+#. A city in Louisiana in the United States
 
14813
+#: ../data/Locations.xml.in.h:3941
 
14814
+msgid "Goosport"
 
14815
+msgstr ""
 
14816
+
 
14817
+#. A city in Ontario in Canada
 
14818
+#: ../data/Locations.xml.in.h:3943
 
14819
+msgid "Gore Bay"
 
14820
+msgstr ""
 
14821
+
 
14822
+#. A city in Iran.
 
14823
+#. The name is also written "گرگان".
 
14824
+#.
 
14825
+#: ../data/Locations.xml.in.h:3947
 
14826
+msgid "Gorgan"
 
14827
+msgstr ""
 
14828
+
 
14829
+#. A city in New Hampshire in the United States
 
14830
+#: ../data/Locations.xml.in.h:3949
 
14831
+msgid "Gorham"
 
14832
+msgstr ""
 
14833
+
 
14834
+#. A city in Bulgaria
 
14835
+#: ../data/Locations.xml.in.h:3951
 
14836
+msgid "Gorna Oryakhovitsa"
 
14837
+msgstr ""
 
14838
+
 
14839
+#. A city in Indiana in the United States
 
14840
+#: ../data/Locations.xml.in.h:3953
 
14841
+msgid "Goshen"
 
14842
+msgstr ""
 
14843
+
 
14844
+#. A city in Hainaut in Belgium
 
14845
+#: ../data/Locations.xml.in.h:3955
 
14846
+msgid "Gosselies"
 
14847
+msgstr ""
 
14848
+
 
14849
+#. A city in Illinois in the United States
 
14850
+#: ../data/Locations.xml.in.h:3957
 
14851
+msgid "Grafton"
 
14852
+msgstr ""
 
14853
+
 
14854
+#. A city in Texas in the United States
 
14855
+#: ../data/Locations.xml.in.h:3959
 
14856
+msgid "Graham"
 
14857
+msgstr ""
 
14858
+
 
14859
+#. A city in Scotland in the United Kingdom
 
14860
+#: ../data/Locations.xml.in.h:3961
 
14861
+msgid "Gramisdale"
 
14862
+msgstr ""
 
14863
+
 
14864
+#. A city in Spain
 
14865
+#: ../data/Locations.xml.in.h:3963
 
14866
+msgid "Granada"
 
14867
+msgstr ""
 
14868
+
 
14869
+#. A city in Texas in the United States
 
14870
+#: ../data/Locations.xml.in.h:3965
 
14871
+msgid "Granbury"
 
14872
+msgstr ""
 
14873
+
 
14874
+#. A city in Arizona in the United States
 
14875
+#: ../data/Locations.xml.in.h:3967
 
14876
+msgid "Grand Canyon"
 
14877
+msgstr ""
 
14878
+
 
14879
+#. A city in North Dakota in the United States
 
14880
+#: ../data/Locations.xml.in.h:3969
 
14881
+msgid "Grand Forks"
 
14882
+msgstr ""
 
14883
+
 
14884
+#. A city in Nebraska in the United States
 
14885
+#: ../data/Locations.xml.in.h:3971
 
14886
+msgid "Grand Island"
 
14887
+msgstr ""
 
14888
+
 
14889
+#. A city in Louisiana in the United States
 
14890
+#: ../data/Locations.xml.in.h:3973
 
14891
+msgid "Grand Isle"
 
14892
+msgstr ""
 
14893
+
 
14894
+#. A city in Colorado in the United States
 
14895
+#: ../data/Locations.xml.in.h:3975
 
14896
+msgid "Grand Junction"
 
14897
+msgstr ""
 
14898
+
 
14899
+#. A city in Minnesota in the United States
 
14900
+#: ../data/Locations.xml.in.h:3977
 
14901
+msgid "Grand Marais"
 
14902
+msgstr ""
 
14903
+
 
14904
+#. A city in Texas in the United States
 
14905
+#: ../data/Locations.xml.in.h:3979
 
14906
+msgid "Grand Prairie"
 
14907
+msgstr ""
 
14908
+
 
14909
+#. A city in Nova Scotia in Canada
 
14910
+#: ../data/Locations.xml.in.h:3981
 
14911
+msgid "Grand-Etang"
 
14912
+msgstr ""
 
14913
+
 
14914
+#. A city in Alberta in Canada
 
14915
+#: ../data/Locations.xml.in.h:3983
 
14916
+msgid "Grande Prairie"
 
14917
+msgstr ""
 
14918
+
 
14919
+#. A city in Minnesota in the United States
 
14920
+#: ../data/Locations.xml.in.h:3985
 
14921
+msgid "Granite Falls"
 
14922
+msgstr ""
 
14923
+
 
14924
+#. A city in New Mexico in the United States
 
14925
+#: ../data/Locations.xml.in.h:3987
 
14926
+msgid "Grants"
 
14927
+msgstr ""
 
14928
+
 
14929
+#. A city in Michigan in the United States
 
14930
+#: ../data/Locations.xml.in.h:3989
 
14931
+msgid "Grayling"
 
14932
+msgstr ""
 
14933
+
 
14934
+#. A city in Austria
 
14935
+#: ../data/Locations.xml.in.h:3991
 
14936
+msgid "Graz"
 
14937
+msgstr ""
 
14938
+
 
14939
+#. A city in Italy
 
14940
+#: ../data/Locations.xml.in.h:3993
 
14941
+msgid "Grazzanise"
 
14942
+msgstr ""
 
14943
+
 
14944
+#. A city in Kansas in the United States
 
14945
+#: ../data/Locations.xml.in.h:3995
 
14946
+msgid "Great Bend"
 
14947
+msgstr ""
 
14948
+
 
14949
+#. A city in Montana in the United States
 
14950
+#: ../data/Locations.xml.in.h:3997
 
14951
+msgid "Great Falls"
 
14952
+msgstr ""
 
14953
+
 
14954
+#. GR - Greece
 
14955
+#: ../data/Locations.xml.in.h:3999
 
14956
+msgid "Greece"
 
14957
+msgstr ""
 
14958
+
 
14959
+#. A city in Wisconsin in the United States
 
14960
+#: ../data/Locations.xml.in.h:4001
 
14961
+msgid "Green Bay"
 
14962
+msgstr ""
 
14963
+
 
14964
+#. GL - Greenland, an autonomous province of Denmark in the
 
14965
+#. North Atlantic.
 
14966
+#.
 
14967
+#: ../data/Locations.xml.in.h:4005
 
14968
+msgid "Greenland"
 
14969
+msgstr ""
 
14970
+
 
14971
+#. A city in South Carolina in the United States
 
14972
+#: ../data/Locations.xml.in.h:4007
 
14973
+msgid "Greer"
 
14974
+msgstr ""
 
14975
+
 
14976
+#. GD - Grenada
 
14977
+#: ../data/Locations.xml.in.h:4009
 
14978
+msgid "Grenada"
 
14979
+msgstr ""
 
14980
+
 
14981
+#. A city in Switzerland
 
14982
+#: ../data/Locations.xml.in.h:4011
 
14983
+msgid "Grenchen"
 
14984
+msgstr ""
 
14985
+
 
14986
+#. A city in France
 
14987
+#: ../data/Locations.xml.in.h:4013
 
14988
+msgid "Grenoble"
 
14989
+msgstr ""
 
14990
+
 
14991
+#. A city in Wyoming in the United States
 
14992
+#: ../data/Locations.xml.in.h:4015
 
14993
+msgid "Greybull"
 
14994
+msgstr ""
 
14995
+
 
14996
+#. A city in the Netherlands
 
14997
+#: ../data/Locations.xml.in.h:4017
 
14998
+msgid "Groningen"
 
14999
+msgstr ""
 
15000
+
 
15001
+#. A city in Italy
 
15002
+#: ../data/Locations.xml.in.h:4019
 
15003
+msgid "Grosseto"
 
15004
+msgstr ""
 
15005
+
 
15006
+#. A city in Connecticut in the United States
 
15007
+#: ../data/Locations.xml.in.h:4021
 
15008
+msgid "Groton"
 
15009
+msgstr ""
 
15010
+
 
15011
+#. A city in Italy
 
15012
+#: ../data/Locations.xml.in.h:4023
 
15013
+msgid "Grottaglie"
 
15014
+msgstr ""
 
15015
+
 
15016
+#. A city in Oklahoma in the United States
 
15017
+#: ../data/Locations.xml.in.h:4025
 
15018
+msgid "Grove"
 
15019
+msgstr ""
 
15020
+
 
15021
+#. A city in Jalisco in Mexico
 
15022
+#: ../data/Locations.xml.in.h:4027
 
15023
+msgid "Guadalajara"
 
15024
+msgstr ""
 
15025
+
 
15026
+#. GP - Guadeloupe, an overseas department of France in the
 
15027
+#. Caribbean.
 
15028
+#.
 
15029
+#: ../data/Locations.xml.in.h:4031
 
15030
+msgid "Guadeloupe"
 
15031
+msgstr ""
 
15032
+
 
15033
+#. GU - Guam, a territory of the United States in the South
 
15034
+#. Pacific.
 
15035
+#.
 
15036
+#: ../data/Locations.xml.in.h:4035
 
15037
+msgid "Guam"
 
15038
+msgstr ""
 
15039
+
 
15040
+#. A city in Honduras
 
15041
+#: ../data/Locations.xml.in.h:4037
 
15042
+msgid "Guanaja"
 
15043
+msgstr ""
 
15044
+
 
15045
+#. A state/province/territory in Mexico
 
15046
+#: ../data/Locations.xml.in.h:4039
 
15047
+msgid "Guanajuato"
 
15048
+msgstr ""
 
15049
+
 
15050
+#. A city in Venezuela
 
15051
+#: ../data/Locations.xml.in.h:4041
 
15052
+msgid "Guanare"
 
15053
+msgstr ""
 
15054
+
 
15055
+#. A state/province/territory in China
 
15056
+#: ../data/Locations.xml.in.h:4043
 
15057
+msgid "Guangdong"
 
15058
+msgstr ""
 
15059
+
 
15060
+#. A state/province/territory in China
 
15061
+#: ../data/Locations.xml.in.h:4045
 
15062
+msgid "Guangxi"
 
15063
+msgstr ""
 
15064
+
 
15065
+#. A city in Guangdong in China.
 
15066
+#. The name is also written "广州".
 
15067
+#.
 
15068
+#: ../data/Locations.xml.in.h:4049
 
15069
+msgid "Guangzhou"
 
15070
+msgstr ""
 
15071
+
 
15072
+#. A city in Cuba
 
15073
+#: ../data/Locations.xml.in.h:4051
 
15074
+msgid "Guantánamo"
 
15075
+msgstr ""
 
15076
+
 
15077
+#. A city in São Paulo in Brazil
 
15078
+#: ../data/Locations.xml.in.h:4053
 
15079
+msgid "Guaratinguetá"
 
15080
+msgstr ""
 
15081
+
 
15082
+#. A city in Venezuela
 
15083
+#: ../data/Locations.xml.in.h:4055
 
15084
+msgid "Guaricure"
 
15085
+msgstr ""
 
15086
+
 
15087
+#. A city in São Paulo in Brazil
 
15088
+#: ../data/Locations.xml.in.h:4057
 
15089
+msgid "Guarulhos"
 
15090
+msgstr ""
 
15091
+
 
15092
+#. A city in Venezuela
 
15093
+#: ../data/Locations.xml.in.h:4059
 
15094
+msgid "Guasdalito"
 
15095
+msgstr ""
 
15096
+
 
15097
+#. A city in Ecuador
 
15098
+#: ../data/Locations.xml.in.h:4061
 
15099
+msgid "Guayaquil"
 
15100
+msgstr ""
 
15101
+
 
15102
+#. A city in Sonora in Mexico
 
15103
+#: ../data/Locations.xml.in.h:4063
 
15104
+msgid "Guaymas"
 
15105
+msgstr ""
 
15106
+
 
15107
+#. GG - The Bailiwick of Guernsey, a British Crown dependency
 
15108
+#: ../data/Locations.xml.in.h:4065
 
15109
+msgid "Guernsey"
 
15110
+msgstr ""
 
15111
+
 
15112
+#. A state/province/territory in Mexico
 
15113
+#: ../data/Locations.xml.in.h:4067
 
15114
+msgid "Guerrero"
 
15115
+msgstr ""
 
15116
+
 
15117
+#. A city in Guangxi in China
 
15118
+#: ../data/Locations.xml.in.h:4069
 
15119
+msgid "Guilin"
 
15120
+msgstr ""
 
15121
+
 
15122
+#. GN - Guinea
 
15123
+#: ../data/Locations.xml.in.h:4071
 
15124
+msgid "Guinea"
 
15125
+msgstr ""
 
15126
+
 
15127
+#. GW - Guinea-Bissau
 
15128
+#: ../data/Locations.xml.in.h:4073
 
15129
+msgid "Guinea-Bissau"
 
15130
+msgstr ""
 
15131
+
 
15132
+#. A state/province/territory in China
 
15133
+#: ../data/Locations.xml.in.h:4075
 
15134
+msgid "Guizhou"
 
15135
+msgstr ""
 
15136
+
 
15137
+#. A city in Mississippi in the United States
 
15138
+#: ../data/Locations.xml.in.h:4077
 
15139
+msgid "Gulfport"
 
15140
+msgstr ""
 
15141
+
 
15142
+#. A city in Alaska in the United States
 
15143
+#: ../data/Locations.xml.in.h:4079
 
15144
+msgid "Gulkana"
 
15145
+msgstr ""
 
15146
+
 
15147
+#. A city in Colorado in the United States
 
15148
+#: ../data/Locations.xml.in.h:4081
 
15149
+msgid "Gunnison"
 
15150
+msgstr ""
 
15151
+
 
15152
+#. A city in Iran.
 
15153
+#. The name is also written "گوشه شاهزاده قاسم".
 
15154
+#.
 
15155
+#: ../data/Locations.xml.in.h:4085
 
15156
+msgid "Gusheh Shahzadeh Qasem"
 
15157
+msgstr ""
 
15158
+
 
15159
+#. A city in Alaska in the United States
 
15160
+#: ../data/Locations.xml.in.h:4087
 
15161
+msgid "Gustavus"
 
15162
+msgstr ""
 
15163
+
 
15164
+#. A city in Oklahoma in the United States
 
15165
+#: ../data/Locations.xml.in.h:4089
 
15166
+msgid "Guthrie"
 
15167
+msgstr ""
 
15168
+
 
15169
+#. GY - Guyana
 
15170
+#: ../data/Locations.xml.in.h:4091
 
15171
+msgid "Guyana"
 
15172
+msgstr ""
 
15173
+
 
15174
+#. A city in Oklahoma in the United States
 
15175
+#: ../data/Locations.xml.in.h:4093
 
15176
+msgid "Guymon"
 
15177
+msgstr ""
 
15178
+
 
15179
+#. A city in Sweden
 
15180
+#: ../data/Locations.xml.in.h:4095
 
15181
+msgid "Gällivare"
 
15182
+msgstr ""
 
15183
+
 
15184
+#. A city in Sweden
 
15185
+#: ../data/Locations.xml.in.h:4097
 
15186
+msgid "Göteborg"
 
15187
+msgstr ""
 
15188
+
 
15189
+#. A city in Spain
 
15190
+#: ../data/Locations.xml.in.h:4099
 
15191
+msgid "Güime"
 
15192
+msgstr ""
 
15193
+
 
15194
+#. A city in Venezuela
 
15195
+#: ../data/Locations.xml.in.h:4101
 
15196
+msgid "Güiria"
 
15197
+msgstr ""
 
15198
+
 
15199
+#. A city in Saudi Arabia
 
15200
+#: ../data/Locations.xml.in.h:4103
 
15201
+msgid "Ha'il"
 
15202
+msgstr ""
 
15203
+
 
15204
+#. A city in Maryland in the United States
 
15205
+#: ../data/Locations.xml.in.h:4105
 
15206
+msgid "Hagerstown"
 
15207
+msgstr ""
 
15208
+
 
15209
+#. A city in Guam
 
15210
+#: ../data/Locations.xml.in.h:4107
 
15211
+msgid "Hagåtña"
 
15212
+msgstr ""
 
15213
+
 
15214
+#. A city in Rhineland-Palatinate in Germany
 
15215
+#: ../data/Locations.xml.in.h:4109
 
15216
+msgid "Hahn"
 
15217
+msgstr ""
 
15218
+
 
15219
+#. A city in Idaho in the United States
 
15220
+#: ../data/Locations.xml.in.h:4111
 
15221
+msgid "Hailey"
 
15222
+msgstr ""
 
15223
+
 
15224
+#. A state/province/territory in China
 
15225
+#: ../data/Locations.xml.in.h:4113
 
15226
+msgid "Hainan"
 
15227
+msgstr ""
 
15228
+
 
15229
+#. A state in Belgium. local name (fr): Hainaut. local name
 
15230
+#. (fr_BE): Hinnot. local name (nl): Henegouwen. local name
 
15231
+#. (de): Hennegau.
 
15232
+#.
 
15233
+#: ../data/Locations.xml.in.h:4118
 
15234
+msgid "Hainaut"
 
15235
+msgstr ""
 
15236
+
 
15237
+#. A city in Alaska in the United States
 
15238
+#: ../data/Locations.xml.in.h:4120
 
15239
+msgid "Haines"
 
15240
+msgstr ""
 
15241
+
 
15242
+#. A city in Yukon Territory in Canada
 
15243
+#: ../data/Locations.xml.in.h:4122
 
15244
+msgid "Haines Junction"
 
15245
+msgstr ""
 
15246
+
 
15247
+#. HT - Haiti
 
15248
+#: ../data/Locations.xml.in.h:4124
 
15249
+msgid "Haiti"
 
15250
+msgstr ""
 
15251
+
 
15252
+#. A city in Japan
 
15253
+#: ../data/Locations.xml.in.h:4126
 
15254
+msgid "Hakodate"
 
15255
+msgstr ""
 
15256
+
 
15257
+#. A city in Alabama in the United States
 
15258
+#: ../data/Locations.xml.in.h:4128
 
15259
+msgid "Haleyville"
 
15260
+msgstr ""
 
15261
+
 
15262
+#. A city in Nova Scotia in Canada
 
15263
+#: ../data/Locations.xml.in.h:4130
 
15264
+msgid "Halifax"
 
15265
+msgstr ""
 
15266
+
 
15267
+#. A city in Nunavut in Canada
 
15268
+#: ../data/Locations.xml.in.h:4132
 
15269
+msgid "Hall Beach"
 
15270
+msgstr ""
 
15271
+
 
15272
+#. A city in Finland
 
15273
+#: ../data/Locations.xml.in.h:4134
 
15274
+msgid "Halli"
 
15275
+msgstr ""
 
15276
+
 
15277
+#. A city in Minnesota in the United States
 
15278
+#: ../data/Locations.xml.in.h:4136
 
15279
+msgid "Hallock"
 
15280
+msgstr ""
 
15281
+
 
15282
+#. A city in Ontario in Canada
 
15283
+#: ../data/Locations.xml.in.h:4138
 
15284
+msgid "Hallowell"
 
15285
+msgstr ""
 
15286
+
 
15287
+#. A city in Sweden
 
15288
+#: ../data/Locations.xml.in.h:4140
 
15289
+msgid "Halmstad"
 
15290
+msgstr ""
 
15291
+
 
15292
+#. A city in Iran.
 
15293
+#. The name is also written "همدان".
 
15294
+#.
 
15295
+#: ../data/Locations.xml.in.h:4144
 
15296
+msgid "Hamadan"
 
15297
+msgstr ""
 
15298
+
 
15299
+#. A city in Japan
 
15300
+#: ../data/Locations.xml.in.h:4146
 
15301
+msgid "Hamamatsu"
 
15302
+msgstr ""
 
15303
+
 
15304
+#. A city in Japan
 
15305
+#: ../data/Locations.xml.in.h:4148
 
15306
+msgid "Hamanaka"
 
15307
+msgstr ""
 
15308
+
 
15309
+#. A city in Norway
 
15310
+#: ../data/Locations.xml.in.h:4150
 
15311
+msgid "Hammerfest"
 
15312
+msgstr ""
 
15313
+
 
15314
+#. A city in Louisiana in the United States
 
15315
+#: ../data/Locations.xml.in.h:4152
 
15316
+msgid "Hammond"
 
15317
+msgstr ""
 
15318
+
 
15319
+#. A city in Virginia in the United States
 
15320
+#: ../data/Locations.xml.in.h:4154
 
15321
+msgid "Hampton"
 
15322
+msgstr ""
 
15323
+
 
15324
+#. A city in Japan
 
15325
+#: ../data/Locations.xml.in.h:4156
 
15326
+msgid "Hanamaki"
 
15327
+msgstr ""
 
15328
+
 
15329
+#. A city in Michigan in the United States
 
15330
+#: ../data/Locations.xml.in.h:4158
 
15331
+msgid "Hancock"
 
15332
+msgstr ""
 
15333
+
 
15334
+#. A city in Chile
 
15335
+#: ../data/Locations.xml.in.h:4160
 
15336
+msgid "Hanga Roa"
 
15337
+msgstr ""
 
15338
+
 
15339
+#. A city in Zhejiang in China.
 
15340
+#. The name is also written "杭州".
 
15341
+#.
 
15342
+#: ../data/Locations.xml.in.h:4164
 
15343
+msgid "Hangzhou"
 
15344
+msgstr ""
 
15345
+
 
15346
+#. A city in Utah in the United States
 
15347
+#: ../data/Locations.xml.in.h:4166
 
15348
+msgid "Hanksville"
 
15349
+msgstr ""
 
15350
+
 
15351
+#. A city in Lower Saxony in Germany
 
15352
+#: ../data/Locations.xml.in.h:4168
 
15353
+msgid "Hannover"
 
15354
+msgstr ""
 
15355
+
 
15356
+#. The capital of Viet Nam.
 
15357
+#. "Hanoi" is the traditional English name.
 
15358
+#. The local name in Vietnamese is "Ha Noi".
 
15359
+#.
 
15360
+#: ../data/Locations.xml.in.h:4173
 
15361
+msgid "Hanoi"
 
15362
+msgstr ""
 
15363
+
 
15364
+#. A city in Heilongjiang in China.
 
15365
+#. The name is also written "哈尔滨".
 
15366
+#.
 
15367
+#: ../data/Locations.xml.in.h:4177
 
15368
+msgid "Harbin"
 
15369
+msgstr ""
 
15370
+
 
15371
+#. A city in Michigan in the United States
 
15372
+#: ../data/Locations.xml.in.h:4179
 
15373
+msgid "Harbor Springs"
 
15374
+msgstr ""
 
15375
+
 
15376
+#. A city in Newfoundland and Labrador in Canada
 
15377
+#: ../data/Locations.xml.in.h:4181
 
15378
+msgid "Harbour Breton"
 
15379
+msgstr ""
 
15380
+
 
15381
+#. A city in Iowa in the United States
 
15382
+#: ../data/Locations.xml.in.h:4183
 
15383
+msgid "Harlan"
 
15384
+msgstr ""
 
15385
+
 
15386
+#. A city in Texas in the United States
 
15387
+#: ../data/Locations.xml.in.h:4185
 
15388
+msgid "Harlingen"
 
15389
+msgstr ""
 
15390
+
 
15391
+#. A city in Quebec in Canada
 
15392
+#: ../data/Locations.xml.in.h:4187
 
15393
+msgid "Harrington Harbour"
 
15394
+msgstr ""
 
15395
+
 
15396
+#. A city in Arkansas in the United States
 
15397
+#: ../data/Locations.xml.in.h:4189
 
15398
+msgid "Harrison"
 
15399
+msgstr ""
 
15400
+
 
15401
+#. A city in Connecticut in the United States
 
15402
+#: ../data/Locations.xml.in.h:4191
 
15403
+msgid "Hartford"
 
15404
+msgstr ""
 
15405
+
 
15406
+#. A city in Algeria
 
15407
+#: ../data/Locations.xml.in.h:4193
 
15408
+msgid "Hassi Messaoud"
 
15409
+msgstr ""
 
15410
+
 
15411
+#. A city in Nebraska in the United States
 
15412
+#: ../data/Locations.xml.in.h:4195
 
15413
+msgid "Hastings"
 
15414
+msgstr ""
 
15415
+
 
15416
+#. A city in Norway
 
15417
+#: ../data/Locations.xml.in.h:4197
 
15418
+msgid "Hasvik"
 
15419
+msgstr ""
 
15420
+
 
15421
+#. A city in Thailand
 
15422
+#: ../data/Locations.xml.in.h:4199
 
15423
+msgid "Hat Yai"
 
15424
+msgstr ""
 
15425
+
 
15426
+#. A city in North Carolina in the United States
 
15427
+#: ../data/Locations.xml.in.h:4201
 
15428
+msgid "Hatteras"
 
15429
+msgstr ""
 
15430
+
 
15431
+#. A city in Mississippi in the United States
 
15432
+#: ../data/Locations.xml.in.h:4203
 
15433
+msgid "Hattiesburg"
 
15434
+msgstr ""
 
15435
+
 
15436
+#. A city in Norway
 
15437
+#: ../data/Locations.xml.in.h:4205
 
15438
+msgid "Haugesund"
 
15439
+msgstr ""
 
15440
+
 
15441
+#. A city in Guernsey
 
15442
+#: ../data/Locations.xml.in.h:4207
 
15443
+msgid "Hautnez"
 
15444
+msgstr ""
 
15445
+
 
15446
+#. The capital of Cuba.
 
15447
+#. "Havana" is the traditional English name.
 
15448
+#. The local name in Spanish is "La Habana".
 
15449
+#.
 
15450
+#: ../data/Locations.xml.in.h:4212
 
15451
+msgid "Havana"
 
15452
+msgstr ""
 
15453
+
 
15454
+#. A city in North Carolina in the United States
 
15455
+#: ../data/Locations.xml.in.h:4214
 
15456
+msgid "Havelock"
 
15457
+msgstr ""
 
15458
+
 
15459
+#. A city in Montana in the United States
 
15460
+#: ../data/Locations.xml.in.h:4216
 
15461
+msgid "Havre"
 
15462
+msgstr ""
 
15463
+
 
15464
+#. A city in Quebec in Canada
 
15465
+#: ../data/Locations.xml.in.h:4218
 
15466
+msgid "Havre-Saint-Pierre"
 
15467
+msgstr ""
 
15468
+
 
15469
+#. A state/province/territory in United States
 
15470
+#: ../data/Locations.xml.in.h:4220
 
15471
+msgid "Hawaii"
 
15472
+msgstr ""
 
15473
+
 
15474
+#. "Hawaiian-Aleutian Time" is the official name of the
 
15475
+#. time zone used in Hawaii and the Aleutian Islands of
 
15476
+#. Alaska in the United States. This string is for the time
 
15477
+#. zone as it is observed in the Aleutian Islands (with
 
15478
+#. Daylight Saving Time). It is only used in places where
 
15479
+#. "United States" is already clear from context.
 
15480
+#.
 
15481
+#: ../data/Locations.xml.in.h:4228
 
15482
+msgid "Hawaiian-Aleutian Time (Aleutian Islands)"
 
15483
+msgstr ""
 
15484
+
 
15485
+#. "Hawaiian-Aleutian Time" is the official name of the
 
15486
+#. time zone used in Hawaii and the Aleutian Islands of
 
15487
+#. Alaska in the United States. This string is for the time
 
15488
+#. zone as it is observed in Hawaii, where they do not use
 
15489
+#. Daylight Saving Time. It is only used in places where
 
15490
+#. "United States" is already clear from context.
 
15491
+#.
 
15492
+#: ../data/Locations.xml.in.h:4236
 
15493
+msgid "Hawaiian-Aleutian Time, no DST (Hawaii)"
 
15494
+msgstr ""
 
15495
+
 
15496
+#. A city in Wales in the United Kingdom
 
15497
+#: ../data/Locations.xml.in.h:4238
 
15498
+msgid "Hawarden"
 
15499
+msgstr ""
 
15500
+
 
15501
+#. A city in California in the United States
 
15502
+#: ../data/Locations.xml.in.h:4240
 
15503
+msgid "Hawthorne"
 
15504
+msgstr ""
 
15505
+
 
15506
+#. A city in Northwest Territories in Canada
 
15507
+#: ../data/Locations.xml.in.h:4242
 
15508
+msgid "Hay River"
 
15509
+msgstr ""
 
15510
+
 
15511
+#. A city in Colorado in the United States
 
15512
+#: ../data/Locations.xml.in.h:4244
 
15513
+msgid "Hayden"
 
15514
+msgstr ""
 
15515
+
 
15516
+#. A city in Kansas in the United States
 
15517
+#: ../data/Locations.xml.in.h:4246
 
15518
+msgid "Hays"
 
15519
+msgstr ""
 
15520
+
 
15521
+#. A city in Alaska in the United States
 
15522
+#: ../data/Locations.xml.in.h:4248
 
15523
+msgid "Healy"
 
15524
+msgstr ""
 
15525
+
 
15526
+#. A city in Texas in the United States
 
15527
+#: ../data/Locations.xml.in.h:4250
 
15528
+msgid "Hearne"
 
15529
+msgstr ""
 
15530
+
 
15531
+#. A city in Texas in the United States
 
15532
+#: ../data/Locations.xml.in.h:4252
 
15533
+msgid "Hebbronville"
 
15534
+msgstr ""
 
15535
+
 
15536
+#. A city in Anhui in China.
 
15537
+#. The name is also written "合肥".
 
15538
+#.
 
15539
+#: ../data/Locations.xml.in.h:4256
 
15540
+msgid "Hefei"
 
15541
+msgstr ""
 
15542
+
 
15543
+#. A state/province/territory in China
 
15544
+#: ../data/Locations.xml.in.h:4258
 
15545
+msgid "Heilongjiang"
 
15546
+msgstr ""
 
15547
+
 
15548
+#. A city in Montana in the United States
 
15549
+#: ../data/Locations.xml.in.h:4260
 
15550
+msgid "Helena"
 
15551
+msgstr ""
 
15552
+
 
15553
+#. The capital of Finland.
 
15554
+#. The local name in Swedish is "Helsingfors".
 
15555
+#.
 
15556
+#: ../data/Locations.xml.in.h:4264
 
15557
+msgid "Helsinki"
 
15558
+msgstr ""
 
15559
+
 
15560
+#. A city in South and South West England in the United
 
15561
+#. Kingdom
 
15562
+#.
 
15563
+#: ../data/Locations.xml.in.h:4268
 
15564
+msgid "Helston"
 
15565
+msgstr ""
 
15566
+
 
15567
+#. A state/province/territory in China
 
15568
+#: ../data/Locations.xml.in.h:4270
 
15569
+msgid "Henan"
 
15570
+msgstr ""
 
15571
+
 
15572
+#. A city in Afghanistan
 
15573
+#: ../data/Locations.xml.in.h:4272
 
15574
+msgid "Herat"
 
15575
+msgstr ""
 
15576
+
 
15577
+#. A city in Oregon in the United States
 
15578
+#: ../data/Locations.xml.in.h:4274
 
15579
+msgid "Hermiston"
 
15580
+msgstr ""
 
15581
+
 
15582
+#. A city in Sonora in Mexico
 
15583
+#: ../data/Locations.xml.in.h:4276
 
15584
+msgid "Hermosillo"
 
15585
+msgstr ""
 
15586
+
 
15587
+#. A city in Ontario in Canada
 
15588
+#: ../data/Locations.xml.in.h:4278
 
15589
+msgid "Heron Bay"
 
15590
+msgstr ""
 
15591
+
 
15592
+#. A state in Germany.  The local name is "Hessen". Please
 
15593
+#. use that unless you know that it has a different name in
 
15594
+#. your language.
 
15595
+#.
 
15596
+#: ../data/Locations.xml.in.h:4283
 
15597
+msgid "Hesse"
 
15598
+msgstr ""
 
15599
+
 
15600
+#. A city in North Dakota in the United States
 
15601
+#: ../data/Locations.xml.in.h:4285
 
15602
+msgid "Hettinger"
 
15603
+msgstr ""
 
15604
+
 
15605
+#. A city in Florida in the United States
 
15606
+#: ../data/Locations.xml.in.h:4287
 
15607
+msgid "Hialeah"
 
15608
+msgstr ""
 
15609
+
 
15610
+#. A city in Minnesota in the United States
 
15611
+#: ../data/Locations.xml.in.h:4289
 
15612
+msgid "Hibbing"
 
15613
+msgstr ""
 
15614
+
 
15615
+#. A city in North Carolina in the United States
 
15616
+#: ../data/Locations.xml.in.h:4291
 
15617
+msgid "Hickory"
 
15618
+msgstr ""
 
15619
+
 
15620
+#. A city in Louisiana in the United States
 
15621
+#: ../data/Locations.xml.in.h:4293
 
15622
+msgid "Hicks"
 
15623
+msgstr ""
 
15624
+
 
15625
+#. A state/province/territory in Mexico
 
15626
+#: ../data/Locations.xml.in.h:4295
 
15627
+msgid "Hidalgo"
 
15628
+msgstr ""
 
15629
+
 
15630
+#. A city in Alberta in Canada
 
15631
+#: ../data/Locations.xml.in.h:4297
 
15632
+msgid "High Level"
 
15633
+msgstr ""
 
15634
+
 
15635
+#. A city in Kansas in the United States
 
15636
+#: ../data/Locations.xml.in.h:4299
 
15637
+msgid "Hill City"
 
15638
+msgstr ""
 
15639
+
 
15640
+#. A city in Texas in the United States
 
15641
+#: ../data/Locations.xml.in.h:4301
 
15642
+msgid "Hillsboro"
 
15643
+msgstr ""
 
15644
+
 
15645
+#. A city in Michigan in the United States
 
15646
+#: ../data/Locations.xml.in.h:4303
 
15647
+msgid "Hillsdale"
 
15648
+msgstr ""
 
15649
+
 
15650
+#. A city in Virginia in the United States
 
15651
+#: ../data/Locations.xml.in.h:4305
 
15652
+msgid "Hillsville"
 
15653
+msgstr ""
 
15654
+
 
15655
+#. A city in Hawaii in the United States
 
15656
+#: ../data/Locations.xml.in.h:4307
 
15657
+msgid "Hilo"
 
15658
+msgstr ""
 
15659
+
 
15660
+#. A city in South Carolina in the United States
 
15661
+#: ../data/Locations.xml.in.h:4309
 
15662
+msgid "Hilton Head Island"
 
15663
+msgstr ""
 
15664
+
 
15665
+#. A city in Georgia in the United States
 
15666
+#: ../data/Locations.xml.in.h:4311
 
15667
+msgid "Hinesville"
 
15668
+msgstr ""
 
15669
+
 
15670
+#. A city in Japan
 
15671
+#: ../data/Locations.xml.in.h:4313
 
15672
+msgid "Hiroshima"
 
15673
+msgstr ""
 
15674
+
 
15675
+#. A city in Viet Nam.
 
15676
+#. "Ho Chi Minh City" is the traditional English name.
 
15677
+#. The local name in Vietnamese is "Thanh Pho Ho Chi Minh".
 
15678
+#.
 
15679
+#: ../data/Locations.xml.in.h:4318
 
15680
+msgid "Ho Chi Minh City"
 
15681
+msgstr ""
 
15682
+
 
15683
+#. A city in New Mexico in the United States
 
15684
+#: ../data/Locations.xml.in.h:4320
 
15685
+msgid "Hobbs"
 
15686
+msgstr ""
 
15687
+
 
15688
+#. A city in Bavaria in Germany
 
15689
+#: ../data/Locations.xml.in.h:4322
 
15690
+msgid "Hof"
 
15691
+msgstr ""
 
15692
+
 
15693
+#. A city in North Carolina in the United States
 
15694
+#: ../data/Locations.xml.in.h:4324
 
15695
+msgid "Hoffman"
 
15696
+msgstr ""
 
15697
+
 
15698
+#. A city in Japan
 
15699
+#: ../data/Locations.xml.in.h:4326
 
15700
+msgid "Hofu"
 
15701
+msgstr ""
 
15702
+
 
15703
+#. A city in Austria
 
15704
+#: ../data/Locations.xml.in.h:4328
 
15705
+msgid "Hohenems"
 
15706
+msgstr ""
 
15707
+
 
15708
+#. A city in Inner Mongolia in China.
 
15709
+#. The name is also written "呼和浩特".
 
15710
+#.
 
15711
+#: ../data/Locations.xml.in.h:4332
 
15712
+msgid "Hohhot"
 
15713
+msgstr ""
 
15714
+
 
15715
+#. A city in Schleswig-Holstein in Germany
 
15716
+#: ../data/Locations.xml.in.h:4334
 
15717
+msgid "Hohn"
 
15718
+msgstr ""
 
15719
+
 
15720
+#. A city in Nebraska in the United States
 
15721
+#: ../data/Locations.xml.in.h:4336
 
15722
+msgid "Holdrege"
 
15723
+msgstr ""
 
15724
+
 
15725
+#. A city in the Czech Republic
 
15726
+#: ../data/Locations.xml.in.h:4338
 
15727
+msgid "Holešov"
 
15728
+msgstr ""
 
15729
+
 
15730
+#. A city in Cuba
 
15731
+#: ../data/Locations.xml.in.h:4340
 
15732
+msgid "Holguín"
 
15733
+msgstr ""
 
15734
+
 
15735
+#. A city in Michigan in the United States
 
15736
+#: ../data/Locations.xml.in.h:4342
 
15737
+msgid "Holland"
 
15738
+msgstr ""
 
15739
+
 
15740
+#. A city in British Columbia in Canada
 
15741
+#: ../data/Locations.xml.in.h:4344
 
15742
+msgid "Hollyburn"
 
15743
+msgstr ""
 
15744
+
 
15745
+#. A city in Florida in the United States
 
15746
+#: ../data/Locations.xml.in.h:4346
 
15747
+msgid "Hollywood"
 
15748
+msgstr ""
 
15749
+
 
15750
+#. A city in Norway
 
15751
+#: ../data/Locations.xml.in.h:4348
 
15752
+msgid "Holm"
 
15753
+msgstr ""
 
15754
+
 
15755
+#. A city in Northwest Territories in Canada
 
15756
+#: ../data/Locations.xml.in.h:4350
 
15757
+msgid "Holman"
 
15758
+msgstr ""
 
15759
+
 
15760
+#. A city in Saxony-Anhalt in Germany
 
15761
+#: ../data/Locations.xml.in.h:4352
 
15762
+msgid "Holzdorf"
 
15763
+msgstr ""
 
15764
+
 
15765
+#. A city in Alaska in the United States
 
15766
+#: ../data/Locations.xml.in.h:4354
 
15767
+msgid "Homer"
 
15768
+msgstr ""
 
15769
+
 
15770
+#. A city in Florida in the United States
 
15771
+#: ../data/Locations.xml.in.h:4356
 
15772
+msgid "Homestead"
 
15773
+msgstr ""
 
15774
+
 
15775
+#. A city in Belarus
 
15776
+#: ../data/Locations.xml.in.h:4358
 
15777
+msgid "Homyel'"
 
15778
+msgstr ""
 
15779
+
 
15780
+#. A city in Texas in the United States
 
15781
+#: ../data/Locations.xml.in.h:4360
 
15782
+msgid "Hondo"
 
15783
+msgstr ""
 
15784
+
 
15785
+#. HN - Honduras
 
15786
+#: ../data/Locations.xml.in.h:4362
 
15787
+msgid "Honduras"
 
15788
+msgstr ""
 
15789
+
 
15790
+#. HK - Hong Kong, aka "Hong Kong Special Administrative Region
 
15791
+#. of China"
 
15792
+#.
 
15793
+#: ../data/Locations.xml.in.h:4366
 
15794
+msgid "Hong Kong"
 
15795
+msgstr ""
 
15796
+
 
15797
+#. The capital of the Solomon Islands
 
15798
+#: ../data/Locations.xml.in.h:4368
 
15799
+msgid "Honiara"
 
15800
+msgstr ""
 
15801
+
 
15802
+#. A city in Norway
 
15803
+#: ../data/Locations.xml.in.h:4370
 
15804
+msgid "Honningsvåg"
 
15805
+msgstr ""
 
15806
+
 
15807
+#. A city in Hawaii in the United States
 
15808
+#: ../data/Locations.xml.in.h:4372
 
15809
+msgid "Honolulu"
 
15810
+msgstr ""
 
15811
+
 
15812
+#. A city in Alaska in the United States
 
15813
+#: ../data/Locations.xml.in.h:4374
 
15814
+msgid "Hoonah"
 
15815
+msgstr ""
 
15816
+
 
15817
+#. A city in Alaska in the United States
 
15818
+#: ../data/Locations.xml.in.h:4376
 
15819
+msgid "Hooper Bay"
 
15820
+msgstr ""
 
15821
+
 
15822
+#. A city in British Columbia in Canada
 
15823
+#: ../data/Locations.xml.in.h:4378
 
15824
+msgid "Hope"
 
15825
+msgstr ""
 
15826
+
 
15827
+#. A city in Newfoundland and Labrador in Canada
 
15828
+#: ../data/Locations.xml.in.h:4380
 
15829
+msgid "Hopedale"
 
15830
+msgstr ""
 
15831
+
 
15832
+#. A city in Washington in the United States
 
15833
+#: ../data/Locations.xml.in.h:4382
 
15834
+msgid "Hoquiam"
 
15835
+msgstr ""
 
15836
+
 
15837
+#. A city in Ukraine
 
15838
+#: ../data/Locations.xml.in.h:4384
 
15839
+msgid "Hostomel'"
 
15840
+msgstr ""
 
15841
+
 
15842
+#. A city in Michigan in the United States
 
15843
+#: ../data/Locations.xml.in.h:4386
 
15844
+msgid "Houghton Lake"
 
15845
+msgstr ""
 
15846
+
 
15847
+#. A city in Maine in the United States
 
15848
+#: ../data/Locations.xml.in.h:4388
 
15849
+msgid "Houlton"
 
15850
+msgstr ""
 
15851
+
 
15852
+#. A city in Louisiana in the United States
 
15853
+#: ../data/Locations.xml.in.h:4390
 
15854
+msgid "Houma"
 
15855
+msgstr ""
 
15856
+
 
15857
+#. A city in Tunisia
 
15858
+#: ../data/Locations.xml.in.h:4392
 
15859
+msgid "Houmt Souk"
 
15860
+msgstr ""
 
15861
+
 
15862
+#. A city in Texas in the United States
 
15863
+#: ../data/Locations.xml.in.h:4394
 
15864
+msgid "Houston"
 
15865
+msgstr ""
 
15866
+
 
15867
+#. A city in Michigan in the United States
 
15868
+#: ../data/Locations.xml.in.h:4396
 
15869
+msgid "Howell"
 
15870
+msgstr ""
 
15871
+
 
15872
+#. A city in France
 
15873
+#: ../data/Locations.xml.in.h:4398
 
15874
+msgid "Hoëricourt"
 
15875
+msgstr ""
 
15876
+
 
15877
+#. A city in Belarus
 
15878
+#: ../data/Locations.xml.in.h:4400
 
15879
+msgid "Hrodna"
 
15880
+msgstr ""
 
15881
+
 
15882
+#. A city in Thailand
 
15883
+#: ../data/Locations.xml.in.h:4402
 
15884
+msgid "Hua Hin"
 
15885
+msgstr ""
 
15886
+
 
15887
+#. A state/province/territory in China
 
15888
+#: ../data/Locations.xml.in.h:4404
 
15889
+msgid "Hubei"
 
15890
+msgstr ""
 
15891
+
 
15892
+#. A city in Guatemala
 
15893
+#: ../data/Locations.xml.in.h:4406
 
15894
+msgid "Huehuetenango"
 
15895
+msgstr ""
 
15896
+
 
15897
+#. A city in South and South West England in the United
 
15898
+#. Kingdom
 
15899
+#.
 
15900
+#: ../data/Locations.xml.in.h:4410
 
15901
+msgid "Hugh Town"
 
15902
+msgstr ""
 
15903
+
 
15904
+#. A state/province/territory in China
 
15905
+#: ../data/Locations.xml.in.h:4412
 
15906
+msgid "Hunan"
 
15907
+msgstr ""
 
15908
+
 
15909
+#. HU - Hungary
 
15910
+#: ../data/Locations.xml.in.h:4414
 
15911
+msgid "Hungary"
 
15912
+msgstr ""
 
15913
+
 
15914
+#. A city in West Virginia in the United States
 
15915
+#: ../data/Locations.xml.in.h:4416
 
15916
+msgid "Huntington"
 
15917
+msgstr ""
 
15918
+
 
15919
+#. A city in California in the United States
 
15920
+#: ../data/Locations.xml.in.h:4418
 
15921
+msgid "Huntington Beach"
 
15922
+msgstr ""
 
15923
+
 
15924
+#. A city in South Dakota in the United States
 
15925
+#: ../data/Locations.xml.in.h:4420
 
15926
+msgid "Huron"
 
15927
+msgstr ""
 
15928
+
 
15929
+#. A city in Alaska in the United States
 
15930
+#: ../data/Locations.xml.in.h:4422
 
15931
+msgid "Huslia"
 
15932
+msgstr ""
 
15933
+
 
15934
+#. A city in Massachusetts in the United States
 
15935
+#: ../data/Locations.xml.in.h:4424
 
15936
+msgid "Hyannis"
 
15937
+msgstr ""
 
15938
+
 
15939
+#. A city in Alaska in the United States
 
15940
+#: ../data/Locations.xml.in.h:4426
 
15941
+msgid "Hydaburg"
 
15942
+msgstr ""
 
15943
+
 
15944
+#. A city in India
 
15945
+#: ../data/Locations.xml.in.h:4428
 
15946
+msgid "Hyderabad"
 
15947
+msgstr ""
 
15948
+
 
15949
+#. A city in France
 
15950
+#: ../data/Locations.xml.in.h:4430
 
15951
+msgid "Hyères"
 
15952
+msgstr ""
 
15953
+
 
15954
+#. A city in Algeria
 
15955
+#: ../data/Locations.xml.in.h:4432
 
15956
+msgid "I-n-Amenas"
 
15957
+msgstr ""
 
15958
+
 
15959
+#. A city in Algeria
 
15960
+#: ../data/Locations.xml.in.h:4434
 
15961
+msgid "I-n-Salah"
 
15962
+msgstr ""
 
15963
+
 
15964
+#. A city in Romania
 
15965
+#: ../data/Locations.xml.in.h:4436
 
15966
+msgid "Iaşi"
 
15967
+msgstr ""
 
15968
+
 
15969
+#. A city in Colombia
 
15970
+#: ../data/Locations.xml.in.h:4438
 
15971
+msgid "Ibagué"
 
15972
+msgstr ""
 
15973
+
 
15974
+#. A city in Spain
 
15975
+#: ../data/Locations.xml.in.h:4440
 
15976
+msgid "Ibiza"
 
15977
+msgstr ""
 
15978
+
 
15979
+#. IS - Iceland
 
15980
+#: ../data/Locations.xml.in.h:4442
 
15981
+msgid "Iceland"
 
15982
+msgstr ""
 
15983
+
 
15984
+#. A city in Oklahoma in the United States
 
15985
+#: ../data/Locations.xml.in.h:4444
 
15986
+msgid "Idabel"
 
15987
+msgstr ""
 
15988
+
 
15989
+#. A state/province/territory in United States
 
15990
+#: ../data/Locations.xml.in.h:4446
 
15991
+msgid "Idaho"
 
15992
+msgstr ""
 
15993
+
 
15994
+#. A city in Idaho in the United States
 
15995
+#: ../data/Locations.xml.in.h:4448
 
15996
+msgid "Idaho Falls"
 
15997
+msgstr ""
 
15998
+
 
15999
+#. A city in Nunavut in Canada
 
16000
+#: ../data/Locations.xml.in.h:4450
 
16001
+msgid "Igloolik"
 
16002
+msgstr ""
 
16003
+
 
16004
+#. A city in Lagos Nigeria
 
16005
+#: ../data/Locations.xml.in.h:4452
 
16006
+msgid "Ikeja"
 
16007
+msgstr ""
 
16008
+
 
16009
+#. A city in Iran.
 
16010
+#. The name is also written "يلام".
 
16011
+#.
 
16012
+#: ../data/Locations.xml.in.h:4456
 
16013
+msgid "Ilam"
 
16014
+msgstr ""
 
16015
+
 
16016
+#. A city in Bahia in Brazil
 
16017
+#: ../data/Locations.xml.in.h:4458
 
16018
+msgid "Ilhéus"
 
16019
+msgstr ""
 
16020
+
 
16021
+#. A city in Bavaria in Germany
 
16022
+#: ../data/Locations.xml.in.h:4460
 
16023
+msgid "Illesheim"
 
16024
+msgstr ""
 
16025
+
 
16026
+#. A state/province/territory in United States
 
16027
+#: ../data/Locations.xml.in.h:4462
 
16028
+msgid "Illinois"
 
16029
+msgstr ""
 
16030
+
 
16031
+#. A city in Algeria
 
16032
+#: ../data/Locations.xml.in.h:4464
 
16033
+msgid "Illizi"
 
16034
+msgstr ""
 
16035
+
 
16036
+#. A city in El Salvador
 
16037
+#: ../data/Locations.xml.in.h:4466
 
16038
+msgid "Ilopango"
 
16039
+msgstr ""
 
16040
+
 
16041
+#. A city in Nigeria
 
16042
+#: ../data/Locations.xml.in.h:4468
 
16043
+msgid "Ilorin"
 
16044
+msgstr ""
 
16045
+
 
16046
+#. A city in Maranhão in Brazil
 
16047
+#: ../data/Locations.xml.in.h:4470
 
16048
+msgid "Imperatriz"
 
16049
+msgstr ""
 
16050
+
 
16051
+#. A city in California in the United States
 
16052
+#: ../data/Locations.xml.in.h:4472
 
16053
+msgid "Imperial Beach"
 
16054
+msgstr ""
 
16055
+
 
16056
+#. A city in South Korea
 
16057
+#: ../data/Locations.xml.in.h:4474
 
16058
+msgid "Inch'on"
 
16059
+msgstr ""
 
16060
+
 
16061
+#. A city in Missouri in the United States
 
16062
+#: ../data/Locations.xml.in.h:4476
 
16063
+msgid "Independence"
 
16064
+msgstr ""
 
16065
+
 
16066
+#. IN - India
 
16067
+#: ../data/Locations.xml.in.h:4478
 
16068
+msgid "India"
 
16069
+msgstr ""
 
16070
+
 
16071
+#. A city in Indiana in the United States
 
16072
+#: ../data/Locations.xml.in.h:4480
 
16073
+msgid "Indianapolis"
 
16074
+msgstr ""
 
16075
+
 
16076
+#. A city in Pennsylvania in the United States
 
16077
+#: ../data/Locations.xml.in.h:4482
 
16078
+msgid "Indiantown"
 
16079
+msgstr ""
 
16080
+
 
16081
+#. ID - Indonesia
 
16082
+#: ../data/Locations.xml.in.h:4484
 
16083
+msgid "Indonesia"
 
16084
+msgstr ""
 
16085
+
 
16086
+#. A city in California in the United States
 
16087
+#: ../data/Locations.xml.in.h:4486
 
16088
+msgid "Inglewood"
 
16089
+msgstr ""
 
16090
+
 
16091
+#. A state/province/territory in China
 
16092
+#: ../data/Locations.xml.in.h:4488
 
16093
+msgid "Inner Mongolia"
 
16094
+msgstr ""
 
16095
+
 
16096
+#. A city in Austria
 
16097
+#: ../data/Locations.xml.in.h:4490
 
16098
+msgid "Innsbruck"
 
16099
+msgstr ""
 
16100
+
 
16101
+#. A city in Quebec in Canada
 
16102
+#: ../data/Locations.xml.in.h:4492
 
16103
+msgid "Inoucdjouac"
 
16104
+msgstr ""
 
16105
+
 
16106
+#. A city in Minnesota in the United States
 
16107
+#: ../data/Locations.xml.in.h:4494
 
16108
+msgid "International Falls"
 
16109
+msgstr ""
 
16110
+
 
16111
+#. A city in Northwest Territories in Canada
 
16112
+#: ../data/Locations.xml.in.h:4496
 
16113
+msgid "Inuvik"
 
16114
+msgstr ""
 
16115
+
 
16116
+#. A city in Minnesota in the United States
 
16117
+#: ../data/Locations.xml.in.h:4498
 
16118
+msgid "Inver Grove Heights"
 
16119
+msgstr ""
 
16120
+
 
16121
+#. A city in Scotland in the United Kingdom
 
16122
+#: ../data/Locations.xml.in.h:4500
 
16123
+msgid "Inverness"
 
16124
+msgstr ""
 
16125
+
 
16126
+#. A city in California in the United States
 
16127
+#: ../data/Locations.xml.in.h:4502
 
16128
+msgid "Inyokern"
 
16129
+msgstr ""
 
16130
+
 
16131
+#. A state/province/territory in United States
 
16132
+#: ../data/Locations.xml.in.h:4504
 
16133
+msgid "Iowa"
 
16134
+msgstr ""
 
16135
+
 
16136
+#. A city in Iowa in the United States
 
16137
+#: ../data/Locations.xml.in.h:4506
 
16138
+msgid "Iowa City"
 
16139
+msgstr ""
 
16140
+
 
16141
+#. A city in Colombia
 
16142
+#: ../data/Locations.xml.in.h:4508
 
16143
+msgid "Ipiales"
 
16144
+msgstr ""
 
16145
+
 
16146
+#. A city in Nunavut in Canada
 
16147
+#: ../data/Locations.xml.in.h:4510
 
16148
+msgid "Iqaluit"
 
16149
+msgstr ""
 
16150
+
 
16151
+#. A city in Chile
 
16152
+#: ../data/Locations.xml.in.h:4512
 
16153
+msgid "Iquique"
 
16154
+msgstr ""
 
16155
+
 
16156
+#. A city in Peru
 
16157
+#: ../data/Locations.xml.in.h:4514
 
16158
+msgid "Iquitos"
 
16159
+msgstr ""
 
16160
+
 
16161
+#. IR - Islamic Republic of Iran
 
16162
+#: ../data/Locations.xml.in.h:4516
 
16163
+msgid "Iran"
 
16164
+msgstr ""
 
16165
+
 
16166
+#. A city in Iran
 
16167
+#: ../data/Locations.xml.in.h:4518
 
16168
+msgid "Iranshahr"
 
16169
+msgstr ""
 
16170
+
 
16171
+#. IQ - Iraq
 
16172
+#: ../data/Locations.xml.in.h:4520
 
16173
+msgid "Iraq"
 
16174
+msgstr ""
 
16175
+
 
16176
+#. IE - Ireland
 
16177
+#: ../data/Locations.xml.in.h:4522
 
16178
+msgid "Ireland"
 
16179
+msgstr ""
 
16180
+
 
16181
+#. A city in Tanzania
 
16182
+#: ../data/Locations.xml.in.h:4524
 
16183
+msgid "Iringa"
 
16184
+msgstr ""
 
16185
+
 
16186
+#. A city in Russia.
 
16187
+#. The local name in Russian is "Иркуцк".
 
16188
+#.
 
16189
+#: ../data/Locations.xml.in.h:4528
 
16190
+msgid "Irkutsk"
 
16191
+msgstr ""
 
16192
+
 
16193
+#. A Russian time zone, used in the Irkutsk oblast and
 
16194
+#. surrounding areas of south-central Russia. The Russian
 
16195
+#. name is "Иркутское время". This string is only used in
 
16196
+#. places where "Russia" is already clear from context.
 
16197
+#.
 
16198
+#: ../data/Locations.xml.in.h:4534
 
16199
+msgid "Irkutsk Time"
 
16200
+msgstr ""
 
16201
+
 
16202
+#. A city in Michigan in the United States
 
16203
+#: ../data/Locations.xml.in.h:4536
 
16204
+msgid "Iron Mountain"
 
16205
+msgstr ""
 
16206
+
 
16207
+#. A city in Michigan in the United States
 
16208
+#: ../data/Locations.xml.in.h:4538
 
16209
+msgid "Ironwood"
 
16210
+msgstr ""
 
16211
+
 
16212
+#. A city in California in the United States
 
16213
+#: ../data/Locations.xml.in.h:4540
 
16214
+msgid "Irvine"
 
16215
+msgstr ""
 
16216
+
 
16217
+#. A city in Texas in the United States
 
16218
+#: ../data/Locations.xml.in.h:4542
 
16219
+msgid "Irving"
 
16220
+msgstr ""
 
16221
+
 
16222
+#. A city in Greece
 
16223
+#: ../data/Locations.xml.in.h:4544
 
16224
+msgid "Irákleion"
 
16225
+msgstr ""
 
16226
+
 
16227
+#. A city in Japan
 
16228
+#: ../data/Locations.xml.in.h:4546
 
16229
+msgid "Ishigaki"
 
16230
+msgstr ""
 
16231
+
 
16232
+#. The capital of Pakistan
 
16233
+#: ../data/Locations.xml.in.h:4548
 
16234
+msgid "Islamabad"
 
16235
+msgstr ""
 
16236
+
 
16237
+#. A city in Manitoba in Canada
 
16238
+#: ../data/Locations.xml.in.h:4550
 
16239
+msgid "Island Lake"
 
16240
+msgstr ""
 
16241
+
 
16242
+#. IM - Isle of Man, a British Crown dependency
 
16243
+#: ../data/Locations.xml.in.h:4552
 
16244
+msgid "Isle of Man"
 
16245
+msgstr ""
 
16246
+
 
16247
+#. A city in New York in the United States
 
16248
+#: ../data/Locations.xml.in.h:4554
 
16249
+msgid "Islip"
 
16250
+msgstr ""
 
16251
+
 
16252
+#. A city in Italy
 
16253
+#: ../data/Locations.xml.in.h:4556
 
16254
+msgid "Isola del Cantone"
 
16255
+msgstr ""
 
16256
+
 
16257
+#. IL - Israel
 
16258
+#: ../data/Locations.xml.in.h:4558
 
16259
+msgid "Israel"
 
16260
+msgstr ""
 
16261
+
 
16262
+#. A city in Turkey
 
16263
+#: ../data/Locations.xml.in.h:4560
 
16264
+msgid "Istanbul"
 
16265
+msgstr ""
 
16266
+
 
16267
+#. A city in France
 
16268
+#: ../data/Locations.xml.in.h:4562
 
16269
+msgid "Istres"
 
16270
+msgstr ""
 
16271
+
 
16272
+#. A city in Pará in Brazil
 
16273
+#: ../data/Locations.xml.in.h:4564
 
16274
+msgid "Itaituba"
 
16275
+msgstr ""
 
16276
+
 
16277
+#. IT - Italy
 
16278
+#: ../data/Locations.xml.in.h:4566
 
16279
+msgid "Italy"
 
16280
+msgstr ""
 
16281
+
 
16282
+#. A city in New York in the United States
 
16283
+#: ../data/Locations.xml.in.h:4568
 
16284
+msgid "Ithaca"
 
16285
+msgstr ""
 
16286
+
 
16287
+#. A city in Greenland
 
16288
+#: ../data/Locations.xml.in.h:4570
 
16289
+msgid "Ittorisseq"
 
16290
+msgstr ""
 
16291
+
 
16292
+#. A city in Finland
 
16293
+#: ../data/Locations.xml.in.h:4572
 
16294
+msgid "Ivalo"
 
16295
+msgstr ""
 
16296
+
 
16297
+#. A city in Ukraine
 
16298
+#: ../data/Locations.xml.in.h:4574
 
16299
+msgid "Ivano-Frankivs'k"
 
16300
+msgstr ""
 
16301
+
 
16302
+#. A city in Quebec in Canada
 
16303
+#: ../data/Locations.xml.in.h:4576
 
16304
+msgid "Ivugivik"
 
16305
+msgstr ""
 
16306
+
 
16307
+#. A city in Japan
 
16308
+#: ../data/Locations.xml.in.h:4578
 
16309
+msgid "Iwakuni"
 
16310
+msgstr ""
 
16311
+
 
16312
+#. A city in Guerrero in Mexico
 
16313
+#: ../data/Locations.xml.in.h:4580
 
16314
+msgid "Ixtapa"
 
16315
+msgstr ""
 
16316
+
 
16317
+#. A city in Oaxaca in Mexico
 
16318
+#: ../data/Locations.xml.in.h:4582
 
16319
+msgid "Ixtepec"
 
16320
+msgstr ""
 
16321
+
 
16322
+#. A city in Turkey
 
16323
+#: ../data/Locations.xml.in.h:4584
 
16324
+msgid "Izmir"
 
16325
+msgstr ""
 
16326
+
 
16327
+#. A city in Japan
 
16328
+#: ../data/Locations.xml.in.h:4586
 
16329
+msgid "Izumo"
 
16330
+msgstr ""
 
16331
+
 
16332
+#. A city in Pará in Brazil
 
16333
+#: ../data/Locations.xml.in.h:4588
 
16334
+msgid "Jacareacanga"
 
16335
+msgstr ""
 
16336
+
 
16337
+#. A city in Quebec in Canada
 
16338
+#: ../data/Locations.xml.in.h:4590
 
16339
+msgid "Jacques-Cartier"
 
16340
+msgstr ""
 
16341
+
 
16342
+#. A city in New Hampshire in the United States
 
16343
+#: ../data/Locations.xml.in.h:4592
 
16344
+msgid "Jaffrey"
 
16345
+msgstr ""
 
16346
+
 
16347
+#. A city in India
 
16348
+#: ../data/Locations.xml.in.h:4594
 
16349
+msgid "Jaipur"
 
16350
+msgstr ""
 
16351
+
 
16352
+#. The capital of Indonesia
 
16353
+#: ../data/Locations.xml.in.h:4596
 
16354
+msgid "Jakarta"
 
16355
+msgstr ""
 
16356
+
 
16357
+#. A city in Greenland.
 
16358
+#. The local name in Kalaallisut is "Ilulissat".
 
16359
+#.
 
16360
+#: ../data/Locations.xml.in.h:4600
 
16361
+msgid "Jakobshavn"
 
16362
+msgstr ""
 
16363
+
 
16364
+#. A state/province/territory in Mexico
 
16365
+#: ../data/Locations.xml.in.h:4602
 
16366
+msgid "Jalisco"
 
16367
+msgstr ""
 
16368
+
 
16369
+#. JM - Jamaica
 
16370
+#: ../data/Locations.xml.in.h:4604
 
16371
+msgid "Jamaica"
 
16372
+msgstr ""
 
16373
+
 
16374
+#. A city in India.
 
16375
+#. The local name in Dogri is "जम्मू"
 
16376
+#: ../data/Locations.xml.in.h:4607
 
16377
+msgid "Jammu"
 
16378
+msgstr ""
 
16379
+
 
16380
+#. A city in Japan
 
16381
+#: ../data/Locations.xml.in.h:4609
 
16382
+msgid "Janado"
 
16383
+msgstr ""
 
16384
+
 
16385
+#. A city in Wisconsin in the United States
 
16386
+#: ../data/Locations.xml.in.h:4611
 
16387
+msgid "Janesville"
 
16388
+msgstr ""
 
16389
+
 
16390
+#. JP - Japan
 
16391
+#: ../data/Locations.xml.in.h:4613
 
16392
+msgid "Japan"
 
16393
+msgstr ""
 
16394
+
 
16395
+#. A city in North Carolina in the United States
 
16396
+#: ../data/Locations.xml.in.h:4615
 
16397
+msgid "Jefferson"
 
16398
+msgstr ""
 
16399
+
 
16400
+#. A city in Missouri in the United States
 
16401
+#: ../data/Locations.xml.in.h:4617
 
16402
+msgid "Jefferson City"
 
16403
+msgstr ""
 
16404
+
 
16405
+#. A city in Croatia
 
16406
+#: ../data/Locations.xml.in.h:4619
 
16407
+msgid "Jelovice"
 
16408
+msgstr ""
 
16409
+
 
16410
+#. A city in Tunisia
 
16411
+#: ../data/Locations.xml.in.h:4621
 
16412
+msgid "Jendouba"
 
16413
+msgstr ""
 
16414
+
 
16415
+#. A city in Spain
 
16416
+#: ../data/Locations.xml.in.h:4623
 
16417
+msgid "Jerez"
 
16418
+msgstr ""
 
16419
+
 
16420
+#. A city in Idaho in the United States
 
16421
+#: ../data/Locations.xml.in.h:4625
 
16422
+msgid "Jerome"
 
16423
+msgstr ""
 
16424
+
 
16425
+#. JE - The Bailiwick of Jersey, a British Crown dependency
 
16426
+#: ../data/Locations.xml.in.h:4627
 
16427
+msgid "Jersey"
 
16428
+msgstr ""
 
16429
+
 
16430
+#. A city in New Jersey in the United States
 
16431
+#: ../data/Locations.xml.in.h:4629
 
16432
+msgid "Jersey City"
 
16433
+msgstr ""
 
16434
+
 
16435
+#. A state/province/territory in China
 
16436
+#: ../data/Locations.xml.in.h:4631
 
16437
+msgid "Jiangsu"
 
16438
+msgstr ""
 
16439
+
 
16440
+#. A city in Saudi Arabia
 
16441
+#: ../data/Locations.xml.in.h:4633
 
16442
+msgid "Jiddah"
 
16443
+msgstr ""
 
16444
+
 
16445
+#. A city in Algeria
 
16446
+#: ../data/Locations.xml.in.h:4635
 
16447
+msgid "Jijel"
 
16448
+msgstr ""
 
16449
+
 
16450
+#. A state/province/territory in China
 
16451
+#: ../data/Locations.xml.in.h:4637
 
16452
+msgid "Jilin"
 
16453
+msgstr ""
 
16454
+
 
16455
+#. A city in Nicaragua
 
16456
+#: ../data/Locations.xml.in.h:4639
 
16457
+msgid "Jinotega"
 
16458
+msgstr ""
 
16459
+
 
16460
+#. A city in Saudi Arabia
 
16461
+#: ../data/Locations.xml.in.h:4641
 
16462
+msgid "Jizan"
 
16463
+msgstr ""
 
16464
+
 
16465
+#. A city in Finland
 
16466
+#: ../data/Locations.xml.in.h:4643
 
16467
+msgid "Joensuu"
 
16468
+msgstr ""
 
16469
+
 
16470
+#. A city in South Africa
 
16471
+#: ../data/Locations.xml.in.h:4645
 
16472
+msgid "Johannesburg"
 
16473
+msgstr ""
 
16474
+
 
16475
+#. The time zone for the Johnston Atoll in the United
 
16476
+#. States Minor Outlying Islands, which keeps the same time
 
16477
+#. as the US state of Hawaii. The string is only used in
 
16478
+#. places where "US Minor Outlying Islands" is already
 
16479
+#. clear from context.
 
16480
+#.
 
16481
+#: ../data/Locations.xml.in.h:4652
 
16482
+msgid "Johnston Atoll (Hawaii Time)"
 
16483
+msgstr ""
 
16484
+
 
16485
+#. A city in Pennsylvania in the United States
 
16486
+#: ../data/Locations.xml.in.h:4654
 
16487
+msgid "Johnstown"
 
16488
+msgstr ""
 
16489
+
 
16490
+#. A city in Malaysia
 
16491
+#: ../data/Locations.xml.in.h:4656
 
16492
+msgid "Johor Bahru"
 
16493
+msgstr ""
 
16494
+
 
16495
+#. A city in Illinois in the United States
 
16496
+#: ../data/Locations.xml.in.h:4658
 
16497
+msgid "Joliet"
 
16498
+msgstr ""
 
16499
+
 
16500
+#. A city in Arkansas in the United States
 
16501
+#: ../data/Locations.xml.in.h:4660
 
16502
+msgid "Jonesboro"
 
16503
+msgstr ""
 
16504
+
 
16505
+#. A city in Quebec in Canada
 
16506
+#: ../data/Locations.xml.in.h:4662
 
16507
+msgid "Jonquière"
 
16508
+msgstr ""
 
16509
+
 
16510
+#. A city in Missouri in the United States
 
16511
+#: ../data/Locations.xml.in.h:4664
 
16512
+msgid "Joplin"
 
16513
+msgstr ""
 
16514
+
 
16515
+#. A city in Paraíba in Brazil
 
16516
+#: ../data/Locations.xml.in.h:4666
 
16517
+msgid "João Pessoa"
 
16518
+msgstr ""
 
16519
+
 
16520
+#. A city in Nicaragua
 
16521
+#: ../data/Locations.xml.in.h:4668
 
16522
+msgid "Juigalpa"
 
16523
+msgstr ""
 
16524
+
 
16525
+#. A city in Minas Gerais in Brazil
 
16526
+#: ../data/Locations.xml.in.h:4670
 
16527
+msgid "Juiz de Fora"
 
16528
+msgstr ""
 
16529
+
 
16530
+#. A city in Peru
 
16531
+#: ../data/Locations.xml.in.h:4672
 
16532
+msgid "Juliaca"
 
16533
+msgstr ""
 
16534
+
 
16535
+#. A city in New Jersey in the United States
 
16536
+#: ../data/Locations.xml.in.h:4674
 
16537
+msgid "Juliustown"
 
16538
+msgstr ""
 
16539
+
 
16540
+#. A city in Texas in the United States
 
16541
+#: ../data/Locations.xml.in.h:4676
 
16542
+msgid "Junction"
 
16543
+msgstr ""
 
16544
+
 
16545
+#. A city in Kansas in the United States
 
16546
+#: ../data/Locations.xml.in.h:4678
 
16547
+msgid "Junction City"
 
16548
+msgstr ""
 
16549
+
 
16550
+#. A city in Finland
 
16551
+#: ../data/Locations.xml.in.h:4680
 
16552
+msgid "Jyväskylä"
 
16553
+msgstr ""
 
16554
+
 
16555
+#. A city in Sweden
 
16556
+#: ../data/Locations.xml.in.h:4682
 
16557
+msgid "Jönköping"
 
16558
+msgstr ""
 
16559
+
 
16560
+#. A city in Uganda
 
16561
+#: ../data/Locations.xml.in.h:4684
 
16562
+msgid "Kabale"
 
16563
+msgstr ""
 
16564
+
 
16565
+#. The capital of Afghanistan.
 
16566
+#. "Kabul" is the traditional English name.
 
16567
+#. The local name in Persian is "Kabol".
 
16568
+#.
 
16569
+#: ../data/Locations.xml.in.h:4689
 
16570
+msgid "Kabul"
 
16571
+msgstr ""
 
16572
+
 
16573
+#. A city in Japan
 
16574
+#: ../data/Locations.xml.in.h:4691
 
16575
+msgid "Kadena"
 
16576
+msgstr ""
 
16577
+
 
16578
+#. A city in Nigeria
 
16579
+#: ../data/Locations.xml.in.h:4693
 
16580
+msgid "Kaduna"
 
16581
+msgstr ""
 
16582
+
 
16583
+#. A city in Japan
 
16584
+#: ../data/Locations.xml.in.h:4695
 
16585
+msgid "Kagoshima"
 
16586
+msgstr ""
 
16587
+
 
16588
+#. A city in Hawaii in the United States
 
16589
+#: ../data/Locations.xml.in.h:4697
 
16590
+msgid "Kahului"
 
16591
+msgstr ""
 
16592
+
 
16593
+#. A city in Hawaii in the United States
 
16594
+#: ../data/Locations.xml.in.h:4699
 
16595
+msgid "Kailua"
 
16596
+msgstr ""
 
16597
+
 
16598
+#. A city in Tunisia
 
16599
+#: ../data/Locations.xml.in.h:4701
 
16600
+msgid "Kairouan"
 
16601
+msgstr ""
 
16602
+
 
16603
+#. A city in Missouri in the United States
 
16604
+#: ../data/Locations.xml.in.h:4703
 
16605
+msgid "Kaiser"
 
16606
+msgstr ""
 
16607
+
 
16608
+#. A city in Finland
 
16609
+#: ../data/Locations.xml.in.h:4705
 
16610
+msgid "Kajaani"
 
16611
+msgstr ""
 
16612
+
 
16613
+#. A city in Alaska in the United States
 
16614
+#: ../data/Locations.xml.in.h:4707
 
16615
+msgid "Kake"
 
16616
+msgstr ""
 
16617
+
 
16618
+#. A city in Alaska in the United States
 
16619
+#: ../data/Locations.xml.in.h:4709
 
16620
+msgid "Kaktovik"
 
16621
+msgstr ""
 
16622
+
 
16623
+#. A city in Michigan in the United States
 
16624
+#: ../data/Locations.xml.in.h:4711
 
16625
+msgid "Kalamazoo"
 
16626
+msgstr ""
 
16627
+
 
16628
+#. A city in Greece.
 
16629
+#. The name is also written "Καλαμάτα".
 
16630
+#.
 
16631
+#: ../data/Locations.xml.in.h:4715
 
16632
+msgid "Kalamáta"
 
16633
+msgstr ""
 
16634
+
 
16635
+#. A city in Western Australia in Australia
 
16636
+#: ../data/Locations.xml.in.h:4717
 
16637
+msgid "Kalgoorlie"
 
16638
+msgstr ""
 
16639
+
 
16640
+#. A city in Russia.
 
16641
+#. The local name in Russian is "Калининград".
 
16642
+#.
 
16643
+#: ../data/Locations.xml.in.h:4721
 
16644
+msgid "Kaliningrad"
 
16645
+msgstr ""
 
16646
+
 
16647
+#. A Russian time zone, used in the city and oblast of
 
16648
+#. Kaliningrad on the Baltic sea. The Russian name is
 
16649
+#. "Калининградское время". This string is only used in
 
16650
+#. places where "Russia" is already clear from context.
 
16651
+#.
 
16652
+#: ../data/Locations.xml.in.h:4727
 
16653
+msgid "Kaliningrad Time"
 
16654
+msgstr ""
 
16655
+
 
16656
+#. A city in Montana in the United States
 
16657
+#: ../data/Locations.xml.in.h:4729
 
16658
+msgid "Kalispell"
 
16659
+msgstr ""
 
16660
+
 
16661
+#. A city in North Rhine-Westphalia in Germany
 
16662
+#: ../data/Locations.xml.in.h:4731
 
16663
+msgid "Kalkar"
 
16664
+msgstr ""
 
16665
+
 
16666
+#. A city in North Rhine-Westphalia in Germany
 
16667
+#: ../data/Locations.xml.in.h:4733
 
16668
+msgid "Kalkum"
 
16669
+msgstr ""
 
16670
+
 
16671
+#. A city in Sweden
 
16672
+#: ../data/Locations.xml.in.h:4735
 
16673
+msgid "Kalmar"
 
16674
+msgstr ""
 
16675
+
 
16676
+#. A city in Alaska in the United States
 
16677
+#: ../data/Locations.xml.in.h:4737
 
16678
+msgid "Kaltag"
 
16679
+msgstr ""
 
16680
+
 
16681
+#. A Russian time zone, used in the Kamchatka krai and
 
16682
+#. Chukotka okrug of far-eastern Russia. The Russian name
 
16683
+#. is "Камчатское время". This string is only used in
 
16684
+#. places where "Russia" is already clear from context.
 
16685
+#.
 
16686
+#: ../data/Locations.xml.in.h:4743
 
16687
+msgid "Kamchatka Time"
 
16688
+msgstr ""
 
16689
+
 
16690
+#. A city in Slovakia
 
16691
+#: ../data/Locations.xml.in.h:4745
 
16692
+msgid "Kamenica nad Cirochou"
 
16693
+msgstr ""
 
16694
+
 
16695
+#. A city in British Columbia in Canada
 
16696
+#: ../data/Locations.xml.in.h:4747
 
16697
+msgid "Kamloops"
 
16698
+msgstr ""
 
16699
+
 
16700
+#. The capital of Uganda
 
16701
+#: ../data/Locations.xml.in.h:4749
 
16702
+msgid "Kampala"
 
16703
+msgstr ""
 
16704
+
 
16705
+#. A city in Japan
 
16706
+#: ../data/Locations.xml.in.h:4751
 
16707
+msgid "Kanayama"
 
16708
+msgstr ""
 
16709
+
 
16710
+#. A city in Illinois in the United States
 
16711
+#: ../data/Locations.xml.in.h:4753
 
16712
+msgid "Kankakee"
 
16713
+msgstr ""
 
16714
+
 
16715
+#. A city in Nigeria
 
16716
+#: ../data/Locations.xml.in.h:4755
 
16717
+msgid "Kano"
 
16718
+msgstr ""
 
16719
+
 
16720
+#. A city in Japan
 
16721
+#: ../data/Locations.xml.in.h:4757
 
16722
+msgid "Kanoya"
 
16723
+msgstr ""
 
16724
+
 
16725
+#. A state/province/territory in United States
 
16726
+#: ../data/Locations.xml.in.h:4759
 
16727
+msgid "Kansas"
 
16728
+msgstr ""
 
16729
+
 
16730
+#. A city in Taiwan.
 
16731
+#. The name is also written "高雄".
 
16732
+#.
 
16733
+#: ../data/Locations.xml.in.h:4763
 
16734
+msgid "Kaohsiung"
 
16735
+msgstr ""
 
16736
+
 
16737
+#. A city in Ontario in Canada
 
16738
+#: ../data/Locations.xml.in.h:4765
 
16739
+msgid "Kapuskasing"
 
16740
+msgstr ""
 
16741
+
 
16742
+#. A city in Pakistan
 
16743
+#: ../data/Locations.xml.in.h:4767
 
16744
+msgid "Karachi"
 
16745
+msgstr ""
 
16746
+
 
16747
+#. A city in Iran.
 
16748
+#. The name is also written "كرج".
 
16749
+#.
 
16750
+#: ../data/Locations.xml.in.h:4771
 
16751
+msgid "Karaj"
 
16752
+msgstr ""
 
16753
+
 
16754
+#. A city in New Caledonia
 
16755
+#: ../data/Locations.xml.in.h:4773
 
16756
+msgid "Karenga"
 
16757
+msgstr ""
 
16758
+
 
16759
+#. A city in the Czech Republic
 
16760
+#: ../data/Locations.xml.in.h:4775
 
16761
+msgid "Karlovy Vary"
 
16762
+msgstr ""
 
16763
+
 
16764
+#. A city in Baden-Württemberg in Germany
 
16765
+#: ../data/Locations.xml.in.h:4777
 
16766
+msgid "Karlsruhe"
 
16767
+msgstr ""
 
16768
+
 
16769
+#. A city in Sweden
 
16770
+#: ../data/Locations.xml.in.h:4779
 
16771
+msgid "Karlstad"
 
16772
+msgstr ""
 
16773
+
 
16774
+#. A city in Greece
 
16775
+#: ../data/Locations.xml.in.h:4781
 
16776
+msgid "Karpásion"
 
16777
+msgstr ""
 
16778
+
 
16779
+#. A city in Turkey
 
16780
+#: ../data/Locations.xml.in.h:4783
 
16781
+msgid "Kars"
 
16782
+msgstr ""
 
16783
+
 
16784
+#. A city in Denmark
 
16785
+#: ../data/Locations.xml.in.h:4785
 
16786
+msgid "Karup"
 
16787
+msgstr ""
 
16788
+
 
16789
+#. A city in Botswana
 
16790
+#: ../data/Locations.xml.in.h:4787
 
16791
+msgid "Kasane"
 
16792
+msgstr ""
 
16793
+
 
16794
+#. A city in Iran
 
16795
+#: ../data/Locations.xml.in.h:4789
 
16796
+msgid "Kashan"
 
16797
+msgstr ""
 
16798
+
 
16799
+#. A city in Xinjiang in China
 
16800
+#: ../data/Locations.xml.in.h:4791
 
16801
+msgid "Kashi"
 
16802
+msgstr ""
 
16803
+
 
16804
+#. A city in Japan
 
16805
+#: ../data/Locations.xml.in.h:4793
 
16806
+msgid "Kashoji"
 
16807
+msgstr ""
 
16808
+
 
16809
+#. A city in Hesse in Germany
 
16810
+#: ../data/Locations.xml.in.h:4795
 
16811
+msgid "Kassel"
 
16812
+msgstr ""
 
16813
+
 
16814
+#. A city in Denmark
 
16815
+#: ../data/Locations.xml.in.h:4797
 
16816
+msgid "Kastrup"
 
16817
+msgstr ""
 
16818
+
 
16819
+#. A city in Northern Territory in Australia
 
16820
+#: ../data/Locations.xml.in.h:4799
 
16821
+msgid "Katherine"
 
16822
+msgstr ""
 
16823
+
 
16824
+#. The capital of Nepal.
 
16825
+#. The local name in Nepali is "काठमाडौं".
 
16826
+#.
 
16827
+#: ../data/Locations.xml.in.h:4803
 
16828
+msgid "Kathmandu"
 
16829
+msgstr ""
 
16830
+
 
16831
+#. A city in Greece
 
16832
+#: ../data/Locations.xml.in.h:4805
 
16833
+msgid "Katomérion"
 
16834
+msgstr ""
 
16835
+
 
16836
+#. A city in Poland
 
16837
+#: ../data/Locations.xml.in.h:4807
 
16838
+msgid "Katowice"
 
16839
+msgstr ""
 
16840
+
 
16841
+#. A city in Bavaria in Germany
 
16842
+#: ../data/Locations.xml.in.h:4809
 
16843
+msgid "Katterbach"
 
16844
+msgstr ""
 
16845
+
 
16846
+#. A city in Sri Lanka
 
16847
+#: ../data/Locations.xml.in.h:4811
 
16848
+msgid "Katunayaka"
 
16849
+msgstr ""
 
16850
+
 
16851
+#. A city in Finland
 
16852
+#: ../data/Locations.xml.in.h:4813
 
16853
+msgid "Kauhava"
 
16854
+msgstr ""
 
16855
+
 
16856
+#. A city in Hawaii in the United States
 
16857
+#: ../data/Locations.xml.in.h:4815
 
16858
+msgid "Kaumalapau"
 
16859
+msgstr ""
 
16860
+
 
16861
+#. A city in Hawaii in the United States
 
16862
+#: ../data/Locations.xml.in.h:4817
 
16863
+msgid "Kaunakakai"
 
16864
+msgstr ""
 
16865
+
 
16866
+#. A city in Lithuania
 
16867
+#: ../data/Locations.xml.in.h:4819
 
16868
+msgid "Kaunas"
 
16869
+msgstr ""
 
16870
+
 
16871
+#. A city in Turkey
 
16872
+#: ../data/Locations.xml.in.h:4821
 
16873
+msgid "Kayseri"
 
16874
+msgstr ""
 
16875
+
 
16876
+#. KZ - Kazakhstan
 
16877
+#: ../data/Locations.xml.in.h:4823
 
16878
+msgid "Kazakhstan"
 
16879
+msgstr ""
 
16880
+
 
16881
+#. A city in Russia.
 
16882
+#. The local name in Russian is "Казань".
 
16883
+#.
 
16884
+#: ../data/Locations.xml.in.h:4827
 
16885
+msgid "Kazan'"
 
16886
+msgstr ""
 
16887
+
 
16888
+#. A city in Nebraska in the United States
 
16889
+#: ../data/Locations.xml.in.h:4829
 
16890
+msgid "Kearney"
 
16891
+msgstr ""
 
16892
+
 
16893
+#. A city in Hungary
 
16894
+#: ../data/Locations.xml.in.h:4831
 
16895
+msgid "Kecskemét"
 
16896
+msgstr ""
 
16897
+
 
16898
+#. A city in New Hampshire in the United States
 
16899
+#: ../data/Locations.xml.in.h:4833
 
16900
+msgid "Keene"
 
16901
+msgstr ""
 
16902
+
 
16903
+#. A city in Hawaii in the United States
 
16904
+#: ../data/Locations.xml.in.h:4835
 
16905
+msgid "Kekaha"
 
16906
+msgstr ""
 
16907
+
 
16908
+#. A city in British Columbia in Canada
 
16909
+#: ../data/Locations.xml.in.h:4837
 
16910
+msgid "Kelowna"
 
16911
+msgstr ""
 
16912
+
 
16913
+#. A city in Washington in the United States
 
16914
+#: ../data/Locations.xml.in.h:4839
 
16915
+msgid "Kelso"
 
16916
+msgstr ""
 
16917
+
 
16918
+#. A city in Russia.
 
16919
+#. The local name in Russian is "Кемерово".
 
16920
+#.
 
16921
+#: ../data/Locations.xml.in.h:4843
 
16922
+msgid "Kemerovo"
 
16923
+msgstr ""
 
16924
+
 
16925
+#. A city in Finland
 
16926
+#: ../data/Locations.xml.in.h:4845
 
16927
+msgid "Kemi"
 
16928
+msgstr ""
 
16929
+
 
16930
+#. A city in Alaska in the United States
 
16931
+#: ../data/Locations.xml.in.h:4847
 
16932
+msgid "Kenai"
 
16933
+msgstr ""
 
16934
+
 
16935
+#. A city in North Carolina in the United States
 
16936
+#: ../data/Locations.xml.in.h:4849
 
16937
+msgid "Kenansville"
 
16938
+msgstr ""
 
16939
+
 
16940
+#. A city in Ontario in Canada
 
16941
+#: ../data/Locations.xml.in.h:4851
 
16942
+msgid "Kenora"
 
16943
+msgstr ""
 
16944
+
 
16945
+#. A city in Wisconsin in the United States
 
16946
+#: ../data/Locations.xml.in.h:4853
 
16947
+msgid "Kenosha"
 
16948
+msgstr ""
 
16949
+
 
16950
+#. A state/province/territory in United States
 
16951
+#: ../data/Locations.xml.in.h:4855
 
16952
+msgid "Kentucky"
 
16953
+msgstr ""
 
16954
+
 
16955
+#. A city in Nova Scotia in Canada
 
16956
+#: ../data/Locations.xml.in.h:4857
 
16957
+msgid "Kentville"
 
16958
+msgstr ""
 
16959
+
 
16960
+#. KE - Kenya
 
16961
+#: ../data/Locations.xml.in.h:4859
 
16962
+msgid "Kenya"
 
16963
+msgstr ""
 
16964
+
 
16965
+#. A city in Iowa in the United States
 
16966
+#: ../data/Locations.xml.in.h:4861
 
16967
+msgid "Keokuk"
 
16968
+msgstr ""
 
16969
+
 
16970
+#. A city in Iran
 
16971
+#: ../data/Locations.xml.in.h:4863
 
16972
+msgid "Kerman"
 
16973
+msgstr ""
 
16974
+
 
16975
+#. A city in Iran
 
16976
+#: ../data/Locations.xml.in.h:4865
 
16977
+msgid "Kermanshah"
 
16978
+msgstr ""
 
16979
+
 
16980
+#. A city in Texas in the United States
 
16981
+#: ../data/Locations.xml.in.h:4867
 
16982
+msgid "Kerrville"
 
16983
+msgstr ""
 
16984
+
 
16985
+#. A city in Alaska in the United States
 
16986
+#: ../data/Locations.xml.in.h:4869
 
16987
+msgid "Ketchikan"
 
16988
+msgstr ""
 
16989
+
 
16990
+#. A city in Florida in the United States
 
16991
+#: ../data/Locations.xml.in.h:4871
 
16992
+msgid "Key West"
 
16993
+msgstr ""
 
16994
+
 
16995
+#. A city in Russia.
 
16996
+#. The local name in Russian is "Хабаровск".
 
16997
+#.
 
16998
+#: ../data/Locations.xml.in.h:4875
 
16999
+msgid "Khabarovsk"
 
17000
+msgstr ""
 
17001
+
 
17002
+#. A city in Saudi Arabia
 
17003
+#: ../data/Locations.xml.in.h:4877
 
17004
+msgid "Khamis Mushayt"
 
17005
+msgstr ""
 
17006
+
 
17007
+#. A city in Russia.
 
17008
+#. The local name in Russian is "Ханты-Мансийск".
 
17009
+#.
 
17010
+#: ../data/Locations.xml.in.h:4881
 
17011
+msgid "Khanty-Mansiysk"
 
17012
+msgstr ""
 
17013
+
 
17014
+#. A city in Ukraine
 
17015
+#: ../data/Locations.xml.in.h:4883
 
17016
+msgid "Kharkiv"
 
17017
+msgstr ""
 
17018
+
 
17019
+#. The capital of Sudan.
 
17020
+#. "Khartoum" is the traditional English name.
 
17021
+#. The local name in Arabic is "Al Khartum".
 
17022
+#.
 
17023
+#: ../data/Locations.xml.in.h:4888
 
17024
+msgid "Khartoum"
 
17025
+msgstr ""
 
17026
+
 
17027
+#. A city in Thailand
 
17028
+#: ../data/Locations.xml.in.h:4890
 
17029
+msgid "Khon Kaen"
 
17030
+msgstr ""
 
17031
+
 
17032
+#. A city in Iran.
 
17033
+#. The name is also written "خرم آباد".
 
17034
+#.
 
17035
+#: ../data/Locations.xml.in.h:4894
 
17036
+msgid "Khorramabad"
 
17037
+msgstr ""
 
17038
+
 
17039
+#. A city in Schleswig-Holstein in Germany
 
17040
+#: ../data/Locations.xml.in.h:4896
 
17041
+msgid "Kiel"
 
17042
+msgstr ""
 
17043
+
 
17044
+#. The capital of Ukraine.
 
17045
+#. "Kiev" is the traditional English name.
 
17046
+#. The local name in Ukrainian is "Kyyiv".
 
17047
+#.
 
17048
+#: ../data/Locations.xml.in.h:4901
 
17049
+msgid "Kiev"
 
17050
+msgstr ""
 
17051
+
 
17052
+#. A city in Tanzania
 
17053
+#: ../data/Locations.xml.in.h:4903
 
17054
+msgid "Kigoma"
 
17055
+msgstr ""
 
17056
+
 
17057
+#. A city in North Carolina in the United States
 
17058
+#: ../data/Locations.xml.in.h:4905
 
17059
+msgid "Kill Devil Hills"
 
17060
+msgstr ""
 
17061
+
 
17062
+#. A city in Texas in the United States
 
17063
+#: ../data/Locations.xml.in.h:4907
 
17064
+msgid "Killeen"
 
17065
+msgstr ""
 
17066
+
 
17067
+#. A city in Scotland in the United Kingdom
 
17068
+#: ../data/Locations.xml.in.h:4909
 
17069
+msgid "Kilmoluag"
 
17070
+msgstr ""
 
17071
+
 
17072
+#. A city in Nebraska in the United States
 
17073
+#: ../data/Locations.xml.in.h:4911
 
17074
+msgid "Kimball"
 
17075
+msgstr ""
 
17076
+
 
17077
+#. A city in Saskatchewan in Canada
 
17078
+#: ../data/Locations.xml.in.h:4913
 
17079
+msgid "Kindersley"
 
17080
+msgstr ""
 
17081
+
 
17082
+#. A city in Alaska in the United States
 
17083
+#: ../data/Locations.xml.in.h:4915
 
17084
+msgid "King Salmon"
 
17085
+msgstr ""
 
17086
+
 
17087
+#. A city in Arizona in the United States
 
17088
+#: ../data/Locations.xml.in.h:4917
 
17089
+msgid "Kingman"
 
17090
+msgstr ""
 
17091
+
 
17092
+#. A city in Tennessee in the United States
 
17093
+#: ../data/Locations.xml.in.h:4919
 
17094
+msgid "Kingsport"
 
17095
+msgstr ""
 
17096
+
 
17097
+#. The capital of Saint Vincent and the Grenadines
 
17098
+#: ../data/Locations.xml.in.h:4921
 
17099
+msgid "Kingstown"
 
17100
+msgstr ""
 
17101
+
 
17102
+#. A city in Texas in the United States
 
17103
+#: ../data/Locations.xml.in.h:4923
 
17104
+msgid "Kingsville"
 
17105
+msgstr ""
 
17106
+
 
17107
+#. A city in Scotland in the United Kingdom
 
17108
+#: ../data/Locations.xml.in.h:4925
 
17109
+msgid "Kinloss"
 
17110
+msgstr ""
 
17111
+
 
17112
+#. A city in Michigan in the United States
 
17113
+#: ../data/Locations.xml.in.h:4927
 
17114
+msgid "Kinross"
 
17115
+msgstr ""
 
17116
+
 
17117
+#. The capital of the Democratic Republic of the Congo
 
17118
+#: ../data/Locations.xml.in.h:4929
 
17119
+msgid "Kinshasa"
 
17120
+msgstr ""
 
17121
+
 
17122
+#. A city in North Carolina in the United States
 
17123
+#: ../data/Locations.xml.in.h:4931
 
17124
+msgid "Kinston"
 
17125
+msgstr ""
 
17126
+
 
17127
+#. A city in Scotland in the United Kingdom
 
17128
+#: ../data/Locations.xml.in.h:4933
 
17129
+msgid "Kintra"
 
17130
+msgstr ""
 
17131
+
 
17132
+#. A city in Alaska in the United States
 
17133
+#: ../data/Locations.xml.in.h:4935
 
17134
+msgid "Kipnuk"
 
17135
+msgstr ""
 
17136
+
 
17137
+#. KI - Kiribati
 
17138
+#: ../data/Locations.xml.in.h:4937
 
17139
+msgid "Kiribati"
 
17140
+msgstr ""
 
17141
+
 
17142
+#. A city in Norway
 
17143
+#: ../data/Locations.xml.in.h:4939
 
17144
+msgid "Kirkenes"
 
17145
+msgstr ""
 
17146
+
 
17147
+#. A city in Missouri in the United States
 
17148
+#: ../data/Locations.xml.in.h:4941
 
17149
+msgid "Kirksville"
 
17150
+msgstr ""
 
17151
+
 
17152
+#. A city in Scotland in the United Kingdom
 
17153
+#: ../data/Locations.xml.in.h:4943
 
17154
+msgid "Kirkwall"
 
17155
+msgstr ""
 
17156
+
 
17157
+#. A city in North West England in the United Kingdom
 
17158
+#: ../data/Locations.xml.in.h:4945
 
17159
+msgid "Kirmington"
 
17160
+msgstr ""
 
17161
+
 
17162
+#. A city in Sweden
 
17163
+#: ../data/Locations.xml.in.h:4947
 
17164
+msgid "Kiruna"
 
17165
+msgstr ""
 
17166
+
 
17167
+#. A city in Iran.
 
17168
+#. The name is also written "كيش".
 
17169
+#.
 
17170
+#: ../data/Locations.xml.in.h:4951
 
17171
+msgid "Kish"
 
17172
+msgstr ""
 
17173
+
 
17174
+#. A city in Turkey
 
17175
+#: ../data/Locations.xml.in.h:4953
 
17176
+msgid "Kislakoy"
 
17177
+msgstr ""
 
17178
+
 
17179
+#. A city in Kenya
 
17180
+#: ../data/Locations.xml.in.h:4955
 
17181
+msgid "Kisumu"
 
17182
+msgstr ""
 
17183
+
 
17184
+#. A city in Japan
 
17185
+#: ../data/Locations.xml.in.h:4957
 
17186
+msgid "Kitakyushu"
 
17187
+msgstr ""
 
17188
+
 
17189
+#. A city in Finland
 
17190
+#: ../data/Locations.xml.in.h:4959
 
17191
+msgid "Kittilä"
 
17192
+msgstr ""
 
17193
+
 
17194
+#. A city in Alaska in the United States
 
17195
+#: ../data/Locations.xml.in.h:4961
 
17196
+msgid "Kivalina"
 
17197
+msgstr ""
 
17198
+
 
17199
+#. A city in Norway
 
17200
+#: ../data/Locations.xml.in.h:4963
 
17201
+msgid "Kjevik"
 
17202
+msgstr ""
 
17203
+
 
17204
+#. A city in Austria
 
17205
+#: ../data/Locations.xml.in.h:4965
 
17206
+msgid "Klagenfurt"
 
17207
+msgstr ""
 
17208
+
 
17209
+#. A city in Oregon in the United States
 
17210
+#: ../data/Locations.xml.in.h:4967
 
17211
+msgid "Klamath Falls"
 
17212
+msgstr ""
 
17213
+
 
17214
+#. A city in Malaysia
 
17215
+#: ../data/Locations.xml.in.h:4969
 
17216
+msgid "Klang"
 
17217
+msgstr ""
 
17218
+
 
17219
+#. A city in Alaska in the United States
 
17220
+#: ../data/Locations.xml.in.h:4971
 
17221
+msgid "Klawock"
 
17222
+msgstr ""
 
17223
+
 
17224
+#. A city in Limburg in Belgium
 
17225
+#: ../data/Locations.xml.in.h:4973
 
17226
+msgid "Kleine-Brogel"
 
17227
+msgstr ""
 
17228
+
 
17229
+#. A city in North Rhine-Westphalia in Germany
 
17230
+#: ../data/Locations.xml.in.h:4975
 
17231
+msgid "Klemenshof"
 
17232
+msgstr ""
 
17233
+
 
17234
+#. A city in South Africa
 
17235
+#: ../data/Locations.xml.in.h:4977
 
17236
+msgid "Klerksdorp"
 
17237
+msgstr ""
 
17238
+
 
17239
+#. A city in the Cayman Islands
 
17240
+#: ../data/Locations.xml.in.h:4979
 
17241
+msgid "Knob Hill"
 
17242
+msgstr ""
 
17243
+
 
17244
+#. A city in Missouri in the United States
 
17245
+#: ../data/Locations.xml.in.h:4981
 
17246
+msgid "Knob Noster"
 
17247
+msgstr ""
 
17248
+
 
17249
+#. A city in Quebec in Canada
 
17250
+#: ../data/Locations.xml.in.h:4983
 
17251
+msgid "Koartac"
 
17252
+msgstr ""
 
17253
+
 
17254
+#. A city in Japan
 
17255
+#: ../data/Locations.xml.in.h:4985
 
17256
+msgid "Kochi"
 
17257
+msgstr ""
 
17258
+
 
17259
+#. A city in Alaska in the United States
 
17260
+#: ../data/Locations.xml.in.h:4987
 
17261
+msgid "Kodiak"
 
17262
+msgstr ""
 
17263
+
 
17264
+#. A city in Indiana in the United States
 
17265
+#: ../data/Locations.xml.in.h:4989
 
17266
+msgid "Kokomo"
 
17267
+msgstr ""
 
17268
+
 
17269
+#. A city in West-Flanders in Belgium
 
17270
+#: ../data/Locations.xml.in.h:4991
 
17271
+msgid "Koksijde"
 
17272
+msgstr ""
 
17273
+
 
17274
+#. A city in India.
 
17275
+#. "Calcutta" is the traditional English name.
 
17276
+#. The local name in Bengali is "Kolkata /  কলকাতা".
 
17277
+#.
 
17278
+#: ../data/Locations.xml.in.h:4996
 
17279
+msgid "Kolkata"
 
17280
+msgstr ""
 
17281
+
 
17282
+#. A city in Japan
 
17283
+#: ../data/Locations.xml.in.h:4998
 
17284
+msgid "Komatsu"
 
17285
+msgstr ""
 
17286
+
 
17287
+#. A city in Japan
 
17288
+#: ../data/Locations.xml.in.h:5000
 
17289
+msgid "Komatsushima"
 
17290
+msgstr ""
 
17291
+
 
17292
+#. A city in Turkey
 
17293
+#: ../data/Locations.xml.in.h:5002
 
17294
+msgid "Konya"
 
17295
+msgstr ""
 
17296
+
 
17297
+#. The capital of Palau
 
17298
+#: ../data/Locations.xml.in.h:5004
 
17299
+msgid "Koror"
 
17300
+msgstr ""
 
17301
+
 
17302
+#. A city in Greece
 
17303
+#: ../data/Locations.xml.in.h:5006
 
17304
+msgid "Kos"
 
17305
+msgstr ""
 
17306
+
 
17307
+#. A city in Malaysia
 
17308
+#: ../data/Locations.xml.in.h:5008
 
17309
+msgid "Kota Baharu"
 
17310
+msgstr ""
 
17311
+
 
17312
+#. A city in Malaysia
 
17313
+#: ../data/Locations.xml.in.h:5010
 
17314
+msgid "Kota Kinabalu"
 
17315
+msgstr ""
 
17316
+
 
17317
+#. A city in Alaska in the United States
 
17318
+#: ../data/Locations.xml.in.h:5012
 
17319
+msgid "Kotzebue"
 
17320
+msgstr ""
 
17321
+
 
17322
+#. A city in Hong Kong
 
17323
+#: ../data/Locations.xml.in.h:5014
 
17324
+msgid "Kowloon"
 
17325
+msgstr ""
 
17326
+
 
17327
+#. A city in Alaska in the United States
 
17328
+#: ../data/Locations.xml.in.h:5016
 
17329
+msgid "Koyuk"
 
17330
+msgstr ""
 
17331
+
 
17332
+#. A city in Greece
 
17333
+#: ../data/Locations.xml.in.h:5018
 
17334
+msgid "Kozáni"
 
17335
+msgstr ""
 
17336
+
 
17337
+#. A city in Slovakia
 
17338
+#: ../data/Locations.xml.in.h:5020
 
17339
+msgid "Košice"
 
17340
+msgstr ""
 
17341
+
 
17342
+#. A city in Poland
 
17343
+#: ../data/Locations.xml.in.h:5022
 
17344
+msgid "Kraków"
 
17345
+msgstr ""
 
17346
+
 
17347
+#. A city in Sweden
 
17348
+#: ../data/Locations.xml.in.h:5024
 
17349
+msgid "Kramfors"
 
17350
+msgstr ""
 
17351
+
 
17352
+#. A city in Russia.
 
17353
+#. The local name in Russian is "Краснодар".
 
17354
+#.
 
17355
+#: ../data/Locations.xml.in.h:5028
 
17356
+msgid "Krasnodar"
 
17357
+msgstr ""
 
17358
+
 
17359
+#. A city in Russia.
 
17360
+#. The local name in Russian is "Красноярск".
 
17361
+#.
 
17362
+#: ../data/Locations.xml.in.h:5032
 
17363
+msgid "Krasnoyarsk"
 
17364
+msgstr ""
 
17365
+
 
17366
+#. A Russian time zone, used in the Krasnoyarsk krai and
 
17367
+#. surrounding areas of central Russia. The Russian name is
 
17368
+#. "Красноярское время". This string is only used in places
 
17369
+#. where "Russia" is already clear from context.
 
17370
+#.
 
17371
+#: ../data/Locations.xml.in.h:5038
 
17372
+msgid "Krasnoyarsk Time"
 
17373
+msgstr ""
 
17374
+
 
17375
+#. A city in Sweden
 
17376
+#: ../data/Locations.xml.in.h:5040
 
17377
+msgid "Kristianstad"
 
17378
+msgstr ""
 
17379
+
 
17380
+#. A city in Norway
 
17381
+#: ../data/Locations.xml.in.h:5042
 
17382
+msgid "Kristiansund"
 
17383
+msgstr ""
 
17384
+
 
17385
+#. A city in Finland.
 
17386
+#. The local name in Swedish is "Kronoby".
 
17387
+#.
 
17388
+#: ../data/Locations.xml.in.h:5046
 
17389
+msgid "Kruunupyy"
 
17390
+msgstr ""
 
17391
+
 
17392
+#. A city in Ukraine
 
17393
+#: ../data/Locations.xml.in.h:5048
 
17394
+msgid "Kryvyy Rih"
 
17395
+msgstr ""
 
17396
+
 
17397
+#. A city in Malaysia
 
17398
+#: ../data/Locations.xml.in.h:5050
 
17399
+msgid "Kuah"
 
17400
+msgstr ""
 
17401
+
 
17402
+#. The capital of Malaysia
 
17403
+#: ../data/Locations.xml.in.h:5052
 
17404
+msgid "Kuala Lumpur"
 
17405
+msgstr ""
 
17406
+
 
17407
+#. A city in Malaysia
 
17408
+#: ../data/Locations.xml.in.h:5054
 
17409
+msgid "Kuantan"
 
17410
+msgstr ""
 
17411
+
 
17412
+#. A city in Malaysia
 
17413
+#: ../data/Locations.xml.in.h:5056
 
17414
+msgid "Kuching"
 
17415
+msgstr ""
 
17416
+
 
17417
+#. A city in Malaysia
 
17418
+#: ../data/Locations.xml.in.h:5058
 
17419
+msgid "Kudat"
 
17420
+msgstr ""
 
17421
+
 
17422
+#. A city in Nunavut in Canada
 
17423
+#: ../data/Locations.xml.in.h:5060
 
17424
+msgid "Kugaaruk"
 
17425
+msgstr ""
 
17426
+
 
17427
+#. A city in Nunavut in Canada
 
17428
+#: ../data/Locations.xml.in.h:5062
 
17429
+msgid "Kugluktuk"
 
17430
+msgstr ""
 
17431
+
 
17432
+#. A city in Greenland
 
17433
+#: ../data/Locations.xml.in.h:5064
 
17434
+msgid "Kulusuk"
 
17435
+msgstr ""
 
17436
+
 
17437
+#. A city in Japan
 
17438
+#: ../data/Locations.xml.in.h:5066
 
17439
+msgid "Kumamoto"
 
17440
+msgstr ""
 
17441
+
 
17442
+#. A city in Yunnan in China.
 
17443
+#. The name is also written "昆明".
 
17444
+#.
 
17445
+#: ../data/Locations.xml.in.h:5070
 
17446
+msgid "Kunming"
 
17447
+msgstr ""
 
17448
+
 
17449
+#. A city in South Korea
 
17450
+#: ../data/Locations.xml.in.h:5072
 
17451
+msgid "Kunsan"
 
17452
+msgstr ""
 
17453
+
 
17454
+#. A city in Western Australia in Australia
 
17455
+#: ../data/Locations.xml.in.h:5074
 
17456
+msgid "Kununurra"
 
17457
+msgstr ""
 
17458
+
 
17459
+#. A city in Finland
 
17460
+#: ../data/Locations.xml.in.h:5076
 
17461
+msgid "Kuopio"
 
17462
+msgstr ""
 
17463
+
 
17464
+#. A city in Estonia
 
17465
+#: ../data/Locations.xml.in.h:5078
 
17466
+msgid "Kuressaare"
 
17467
+msgstr ""
 
17468
+
 
17469
+#. A city in Japan
 
17470
+#: ../data/Locations.xml.in.h:5080
 
17471
+msgid "Kushiro"
 
17472
+msgstr ""
 
17473
+
 
17474
+#. A city in Alaska in the United States
 
17475
+#: ../data/Locations.xml.in.h:5082
 
17476
+msgid "Kustatan"
 
17477
+msgstr ""
 
17478
+
 
17479
+#. A city in Quebec in Canada
 
17480
+#: ../data/Locations.xml.in.h:5084
 
17481
+msgid "Kuujjuaq"
 
17482
+msgstr ""
 
17483
+
 
17484
+#. A city in Finland
 
17485
+#: ../data/Locations.xml.in.h:5086
 
17486
+msgid "Kuusamo"
 
17487
+msgstr ""
 
17488
+
 
17489
+#. KG - Kyrgyzstan
 
17490
+#: ../data/Locations.xml.in.h:5088
 
17491
+msgid "Kyrgyzstan"
 
17492
+msgstr ""
 
17493
+
 
17494
+#. A city in Greece
 
17495
+#: ../data/Locations.xml.in.h:5090
 
17496
+msgid "Kárpathos"
 
17497
+msgstr ""
 
17498
+
 
17499
+#. A city in Estonia
 
17500
+#: ../data/Locations.xml.in.h:5092
 
17501
+msgid "Kärdla"
 
17502
+msgstr ""
 
17503
+
 
17504
+#. A city in Greece.
 
17505
+#. The name is also written "Κέρκυρα".
 
17506
+#.
 
17507
+#: ../data/Locations.xml.in.h:5096
 
17508
+msgid "Kérkyra"
 
17509
+msgstr ""
 
17510
+
 
17511
+#. A city in Greece.
 
17512
+#. The name is also written "Κύθηρα".
 
17513
+#.
 
17514
+#: ../data/Locations.xml.in.h:5100
 
17515
+msgid "Kýthira"
 
17516
+msgstr ""
 
17517
+
 
17518
+#. A city in Quebec in Canada
 
17519
+#: ../data/Locations.xml.in.h:5102
 
17520
+msgid "L'Anse-Saint-Jean"
 
17521
+msgstr ""
 
17522
+
 
17523
+#. A city in Quebec in Canada
 
17524
+#: ../data/Locations.xml.in.h:5104
 
17525
+msgid "L'Ascension"
 
17526
+msgstr ""
 
17527
+
 
17528
+#. A city in Quebec in Canada
 
17529
+#: ../data/Locations.xml.in.h:5106
 
17530
+msgid "L'Assomption"
 
17531
+msgstr ""
 
17532
+
 
17533
+#. A city in Ukraine
 
17534
+#: ../data/Locations.xml.in.h:5108
 
17535
+msgid "L'viv"
 
17536
+msgstr ""
 
17537
+
 
17538
+#. A city in Quebec in Canada
 
17539
+#: ../data/Locations.xml.in.h:5110
 
17540
+msgid "La Baie"
 
17541
+msgstr ""
 
17542
+
 
17543
+#. A city in Honduras
 
17544
+#: ../data/Locations.xml.in.h:5112
 
17545
+msgid "La Ceiba"
 
17546
+msgstr ""
 
17547
+
 
17548
+#. A city in Venezuela
 
17549
+#: ../data/Locations.xml.in.h:5114
 
17550
+msgid "La Chica"
 
17551
+msgstr ""
 
17552
+
 
17553
+#. A city in Wisconsin in the United States
 
17554
+#: ../data/Locations.xml.in.h:5116
 
17555
+msgid "La Crosse"
 
17556
+msgstr ""
 
17557
+
 
17558
+#. A city in Honduras
 
17559
+#: ../data/Locations.xml.in.h:5118
 
17560
+msgid "La Esperanza"
 
17561
+msgstr ""
 
17562
+
 
17563
+#. A city in Oregon in the United States
 
17564
+#: ../data/Locations.xml.in.h:5120
 
17565
+msgid "La Grande"
 
17566
+msgstr ""
 
17567
+
 
17568
+#. A city in Jersey
 
17569
+#: ../data/Locations.xml.in.h:5122
 
17570
+msgid "La Hougue"
 
17571
+msgstr ""
 
17572
+
 
17573
+#. A city in Colorado in the United States
 
17574
+#: ../data/Locations.xml.in.h:5124
 
17575
+msgid "La Junta"
 
17576
+msgstr ""
 
17577
+
 
17578
+#. A city in Honduras
 
17579
+#: ../data/Locations.xml.in.h:5126
 
17580
+msgid "La Mesa"
 
17581
+msgstr ""
 
17582
+
 
17583
+#. A city in France
 
17584
+#: ../data/Locations.xml.in.h:5128
 
17585
+msgid "La Roche-sur-Yon"
 
17586
+msgstr ""
 
17587
+
 
17588
+#. A city in France
 
17589
+#: ../data/Locations.xml.in.h:5130
 
17590
+msgid "La Rochelle"
 
17591
+msgstr ""
 
17592
+
 
17593
+#. A city in the Dominican Republic
 
17594
+#: ../data/Locations.xml.in.h:5132
 
17595
+msgid "La Romana"
 
17596
+msgstr ""
 
17597
+
 
17598
+#. A city in Saskatchewan in Canada
 
17599
+#: ../data/Locations.xml.in.h:5134
 
17600
+msgid "La Ronge"
 
17601
+msgstr ""
 
17602
+
 
17603
+#. A city in Chile
 
17604
+#: ../data/Locations.xml.in.h:5136
 
17605
+msgid "La Serena"
 
17606
+msgstr ""
 
17607
+
 
17608
+#. A city in Quebec in Canada
 
17609
+#: ../data/Locations.xml.in.h:5138
 
17610
+msgid "La Tuque"
 
17611
+msgstr ""
 
17612
+
 
17613
+#. A city in California in the United States
 
17614
+#: ../data/Locations.xml.in.h:5140
 
17615
+msgid "La Verne"
 
17616
+msgstr ""
 
17617
+
 
17618
+#. A city in Colorado in the United States
 
17619
+#: ../data/Locations.xml.in.h:5142
 
17620
+msgid "La Veta"
 
17621
+msgstr ""
 
17622
+
 
17623
+#. A city in Mecklenburg-Western Pomerania in Germany
 
17624
+#: ../data/Locations.xml.in.h:5144
 
17625
+msgid "Laage"
 
17626
+msgstr ""
 
17627
+
 
17628
+#. A city in Alberta in Canada
 
17629
+#: ../data/Locations.xml.in.h:5146
 
17630
+msgid "Lac La Biche"
 
17631
+msgstr ""
 
17632
+
 
17633
+#. A city in Illinois in the United States
 
17634
+#: ../data/Locations.xml.in.h:5148
 
17635
+msgid "Lacon"
 
17636
+msgstr ""
 
17637
+
 
17638
+#. A city in New Hampshire in the United States
 
17639
+#: ../data/Locations.xml.in.h:5150
 
17640
+msgid "Laconia"
 
17641
+msgstr ""
 
17642
+
 
17643
+#. A city in Wisconsin in the United States
 
17644
+#: ../data/Locations.xml.in.h:5152
 
17645
+msgid "Ladysmith"
 
17646
+msgstr ""
 
17647
+
 
17648
+#. A city in Bavaria in Germany
 
17649
+#: ../data/Locations.xml.in.h:5154
 
17650
+msgid "Lager Lechfeld"
 
17651
+msgstr ""
 
17652
+
 
17653
+#. A city in Algeria
 
17654
+#: ../data/Locations.xml.in.h:5156
 
17655
+msgid "Laghouat"
 
17656
+msgstr ""
 
17657
+
 
17658
+#. A city in Oaxaca in Mexico
 
17659
+#: ../data/Locations.xml.in.h:5158
 
17660
+msgid "Laguna Tepic"
 
17661
+msgstr ""
 
17662
+
 
17663
+#. A city in Hawaii in the United States
 
17664
+#: ../data/Locations.xml.in.h:5160
 
17665
+msgid "Lahaina"
 
17666
+msgstr ""
 
17667
+
 
17668
+#. A city in Pakistan
 
17669
+#: ../data/Locations.xml.in.h:5162
 
17670
+msgid "Lahore"
 
17671
+msgstr ""
 
17672
+
 
17673
+#. A city in Baden-Württemberg in Germany
 
17674
+#: ../data/Locations.xml.in.h:5164
 
17675
+msgid "Lahr"
 
17676
+msgstr ""
 
17677
+
 
17678
+#. A city in Italy
 
17679
+#: ../data/Locations.xml.in.h:5166
 
17680
+msgid "Laigueglia"
 
17681
+msgstr ""
 
17682
+
 
17683
+#. A city in Portugal
 
17684
+#: ../data/Locations.xml.in.h:5168
 
17685
+msgid "Lajes"
 
17686
+msgstr ""
 
17687
+
 
17688
+#. A city in Louisiana in the United States
 
17689
+#: ../data/Locations.xml.in.h:5170
 
17690
+msgid "Lake Charles"
 
17691
+msgstr ""
 
17692
+
 
17693
+#. A city in Alaska in the United States
 
17694
+#: ../data/Locations.xml.in.h:5172
 
17695
+msgid "Lake Minchumina"
 
17696
+msgstr ""
 
17697
+
 
17698
+#. A city in Florida in the United States
 
17699
+#: ../data/Locations.xml.in.h:5174
 
17700
+msgid "Lakeland"
 
17701
+msgstr ""
 
17702
+
 
17703
+#. A city in East and South East England in the United
 
17704
+#. Kingdom
 
17705
+#.
 
17706
+#: ../data/Locations.xml.in.h:5178
 
17707
+msgid "Lakenheath"
 
17708
+msgstr ""
 
17709
+
 
17710
+#. A city in Utah in the United States
 
17711
+#: ../data/Locations.xml.in.h:5180
 
17712
+msgid "Lakeside"
 
17713
+msgstr ""
 
17714
+
 
17715
+#. A city in Oregon in the United States
 
17716
+#: ../data/Locations.xml.in.h:5182
 
17717
+msgid "Lakeview"
 
17718
+msgstr ""
 
17719
+
 
17720
+#. A city in Colorado in the United States
 
17721
+#: ../data/Locations.xml.in.h:5184
 
17722
+msgid "Lakewood"
 
17723
+msgstr ""
 
17724
+
 
17725
+#. A city in Colorado in the United States
 
17726
+#: ../data/Locations.xml.in.h:5186
 
17727
+msgid "Lamar"
 
17728
+msgstr ""
 
17729
+
 
17730
+#. A city in Michigan in the United States
 
17731
+#: ../data/Locations.xml.in.h:5188
 
17732
+msgid "Lambertville"
 
17733
+msgstr ""
 
17734
+
 
17735
+#. A city in Iowa in the United States
 
17736
+#: ../data/Locations.xml.in.h:5190
 
17737
+msgid "Lamoni"
 
17738
+msgstr ""
 
17739
+
 
17740
+#. A city in Thailand
 
17741
+#: ../data/Locations.xml.in.h:5192
 
17742
+msgid "Lampang"
 
17743
+msgstr ""
 
17744
+
 
17745
+#. A city in Italy
 
17746
+#: ../data/Locations.xml.in.h:5194
 
17747
+msgid "Lampedusa"
 
17748
+msgstr ""
 
17749
+
 
17750
+#. A city in Wisconsin in the United States
 
17751
+#: ../data/Locations.xml.in.h:5196
 
17752
+msgid "Land O' Lakes"
 
17753
+msgstr ""
 
17754
+
 
17755
+#. A city in Wyoming in the United States
 
17756
+#: ../data/Locations.xml.in.h:5198
 
17757
+msgid "Lander"
 
17758
+msgstr ""
 
17759
+
 
17760
+#. A city in Bavaria in Germany
 
17761
+#: ../data/Locations.xml.in.h:5200
 
17762
+msgid "Landsberg"
 
17763
+msgstr ""
 
17764
+
 
17765
+#. A city in France
 
17766
+#: ../data/Locations.xml.in.h:5202
 
17767
+msgid "Lannion"
 
17768
+msgstr ""
 
17769
+
 
17770
+#. A city in Michigan in the United States
 
17771
+#: ../data/Locations.xml.in.h:5204
 
17772
+msgid "Lansing"
 
17773
+msgstr ""
 
17774
+
 
17775
+#. A city in Gansu in China.
 
17776
+#. The name is also written "兰州".
 
17777
+#.
 
17778
+#: ../data/Locations.xml.in.h:5208
 
17779
+msgid "Lanzhou"
 
17780
+msgstr ""
 
17781
+
 
17782
+#. A city in the Philippines
 
17783
+#: ../data/Locations.xml.in.h:5210
 
17784
+msgid "Laoag"
 
17785
+msgstr ""
 
17786
+
 
17787
+#. LA - Lao People's Democratic Republic
 
17788
+#: ../data/Locations.xml.in.h:5212
 
17789
+msgid "Laos"
 
17790
+msgstr ""
 
17791
+
 
17792
+#. A city in Finland
 
17793
+#: ../data/Locations.xml.in.h:5214
 
17794
+msgid "Lappeenranta"
 
17795
+msgstr ""
 
17796
+
 
17797
+#. A city in Iran
 
17798
+#: ../data/Locations.xml.in.h:5216
 
17799
+msgid "Lar"
 
17800
+msgstr ""
 
17801
+
 
17802
+#. A city in Victoria in Australia
 
17803
+#: ../data/Locations.xml.in.h:5218
 
17804
+msgid "Lara"
 
17805
+msgstr ""
 
17806
+
 
17807
+#. A city in Wyoming in the United States
 
17808
+#: ../data/Locations.xml.in.h:5220
 
17809
+msgid "Laramie"
 
17810
+msgstr ""
 
17811
+
 
17812
+#. A city in Texas in the United States
 
17813
+#: ../data/Locations.xml.in.h:5222
 
17814
+msgid "Laredo"
 
17815
+msgstr ""
 
17816
+
 
17817
+#. A city in Cyprus
 
17818
+#: ../data/Locations.xml.in.h:5224
 
17819
+msgid "Larnaca"
 
17820
+msgstr ""
 
17821
+
 
17822
+#. A city in New Mexico in the United States
 
17823
+#: ../data/Locations.xml.in.h:5226
 
17824
+msgid "Las Cruces"
 
17825
+msgstr ""
 
17826
+
 
17827
+#. A city in British Columbia in Canada
 
17828
+#: ../data/Locations.xml.in.h:5228
 
17829
+msgid "Lasqueti"
 
17830
+msgstr ""
 
17831
+
 
17832
+#. A city in Ecuador
 
17833
+#: ../data/Locations.xml.in.h:5230
 
17834
+msgid "Latacunga"
 
17835
+msgstr ""
 
17836
+
 
17837
+#. A city in Syria.
 
17838
+#. "Latakia" is the traditional English name.
 
17839
+#. The local name in Arabic is "Al Ladhiqiyah".
 
17840
+#.
 
17841
+#: ../data/Locations.xml.in.h:5235
 
17842
+msgid "Latakia"
 
17843
+msgstr ""
 
17844
+
 
17845
+#. A city in Italy
 
17846
+#: ../data/Locations.xml.in.h:5237
 
17847
+msgid "Latina"
 
17848
+msgstr ""
 
17849
+
 
17850
+#. A city in Pennsylvania in the United States
 
17851
+#: ../data/Locations.xml.in.h:5239
 
17852
+msgid "Latrobe"
 
17853
+msgstr ""
 
17854
+
 
17855
+#. LV - Latvia
 
17856
+#: ../data/Locations.xml.in.h:5241
 
17857
+msgid "Latvia"
 
17858
+msgstr ""
 
17859
+
 
17860
+#. A city in Tasmania in Australia
 
17861
+#: ../data/Locations.xml.in.h:5243
 
17862
+msgid "Launceston"
 
17863
+msgstr ""
 
17864
+
 
17865
+#. A city in Baden-Württemberg in Germany
 
17866
+#: ../data/Locations.xml.in.h:5245
 
17867
+msgid "Laupheim"
 
17868
+msgstr ""
 
17869
+
 
17870
+#. A city in Oklahoma in the United States
 
17871
+#: ../data/Locations.xml.in.h:5247
 
17872
+msgid "Lawton"
 
17873
+msgstr ""
 
17874
+
 
17875
+#. A city in Martinique
 
17876
+#: ../data/Locations.xml.in.h:5249
 
17877
+msgid "Le Lamentin"
 
17878
+msgstr ""
 
17879
+
 
17880
+#. A city in France
 
17881
+#: ../data/Locations.xml.in.h:5251
 
17882
+msgid "Le Mans"
 
17883
+msgstr ""
 
17884
+
 
17885
+#. A city in Iowa in the United States
 
17886
+#: ../data/Locations.xml.in.h:5253
 
17887
+msgid "Le Mars"
 
17888
+msgstr ""
 
17889
+
 
17890
+#. A city in France
 
17891
+#: ../data/Locations.xml.in.h:5255
 
17892
+msgid "Le Puy"
 
17893
+msgstr ""
 
17894
+
 
17895
+#. A city in Saskatchewan in Canada
 
17896
+#: ../data/Locations.xml.in.h:5257
 
17897
+msgid "Leader"
 
17898
+msgstr ""
 
17899
+
 
17900
+#. A city in Colorado in the United States
 
17901
+#: ../data/Locations.xml.in.h:5259
 
17902
+msgid "Leadville"
 
17903
+msgstr ""
 
17904
+
 
17905
+#. A city in Quebec in Canada
 
17906
+#: ../data/Locations.xml.in.h:5261
 
17907
+msgid "Leaf River"
 
17908
+msgstr ""
 
17909
+
 
17910
+#. A city in Western Australia in Australia
 
17911
+#: ../data/Locations.xml.in.h:5263
 
17912
+msgid "Learmonth"
 
17913
+msgstr ""
 
17914
+
 
17915
+#. A city in Italy
 
17916
+#: ../data/Locations.xml.in.h:5265
 
17917
+msgid "Lecce"
 
17918
+msgstr ""
 
17919
+
 
17920
+#. A city in North West England in the United Kingdom
 
17921
+#: ../data/Locations.xml.in.h:5267
 
17922
+msgid "Leeds"
 
17923
+msgstr ""
 
17924
+
 
17925
+#. A city in North West England in the United Kingdom
 
17926
+#: ../data/Locations.xml.in.h:5269
 
17927
+msgid "Leeming Bar"
 
17928
+msgstr ""
 
17929
+
 
17930
+#. A city in the Netherlands
 
17931
+#: ../data/Locations.xml.in.h:5271
 
17932
+msgid "Leeuwarden"
 
17933
+msgstr ""
 
17934
+
 
17935
+#. A city in Louisiana in the United States
 
17936
+#: ../data/Locations.xml.in.h:5273
 
17937
+msgid "Leeville"
 
17938
+msgstr ""
 
17939
+
 
17940
+#. A city in India.
 
17941
+#. The local name in Hindi is "लेह"
 
17942
+#: ../data/Locations.xml.in.h:5276
 
17943
+msgid "Leh"
 
17944
+msgstr ""
 
17945
+
 
17946
+#. A city in Saxony in Germany
 
17947
+#: ../data/Locations.xml.in.h:5278
 
17948
+msgid "Leipzig"
 
17949
+msgstr ""
 
17950
+
 
17951
+#. A city in California in the United States
 
17952
+#: ../data/Locations.xml.in.h:5280
 
17953
+msgid "Lemoore"
 
17954
+msgstr ""
 
17955
+
 
17956
+#. A city in Quebec in Canada
 
17957
+#: ../data/Locations.xml.in.h:5282
 
17958
+msgid "Lennoxville"
 
17959
+msgstr ""
 
17960
+
 
17961
+#. A city in Guadeloupe
 
17962
+#: ../data/Locations.xml.in.h:5284
 
17963
+msgid "Les Abymes"
 
17964
+msgstr ""
 
17965
+
 
17966
+#. LS - Lesotho
 
17967
+#: ../data/Locations.xml.in.h:5286
 
17968
+msgid "Lesotho"
 
17969
+msgstr ""
 
17970
+
 
17971
+#. A city in Alberta in Canada
 
17972
+#: ../data/Locations.xml.in.h:5288
 
17973
+msgid "Lethbridge"
 
17974
+msgstr ""
 
17975
+
 
17976
+#. A city in Colombia
 
17977
+#: ../data/Locations.xml.in.h:5290
 
17978
+msgid "Leticia"
 
17979
+msgstr ""
 
17980
+
 
17981
+#. A city in Botswana
 
17982
+#: ../data/Locations.xml.in.h:5292
 
17983
+msgid "Letlhakane"
 
17984
+msgstr ""
 
17985
+
 
17986
+#. A city in Scotland in the United Kingdom
 
17987
+#: ../data/Locations.xml.in.h:5294
 
17988
+msgid "Leuchars"
 
17989
+msgstr ""
 
17990
+
 
17991
+#. A city in West Virginia in the United States
 
17992
+#: ../data/Locations.xml.in.h:5296
 
17993
+msgid "Lewisburg"
 
17994
+msgstr ""
 
17995
+
 
17996
+#. A city in Idaho in the United States
 
17997
+#: ../data/Locations.xml.in.h:5298
 
17998
+msgid "Lewiston"
 
17999
+msgstr ""
 
18000
+
 
18001
+#. A city in Montana in the United States
 
18002
+#: ../data/Locations.xml.in.h:5300
 
18003
+msgid "Lewistown"
 
18004
+msgstr ""
 
18005
+
 
18006
+#. A state/province/territory in China
 
18007
+#: ../data/Locations.xml.in.h:5302
 
18008
+msgid "Liaoning"
 
18009
+msgstr ""
 
18010
+
 
18011
+#. A city in Kansas in the United States
 
18012
+#: ../data/Locations.xml.in.h:5304
 
18013
+msgid "Liberal"
 
18014
+msgstr ""
 
18015
+
 
18016
+#. A city in the Czech Republic
 
18017
+#: ../data/Locations.xml.in.h:5306
 
18018
+msgid "Liberec"
 
18019
+msgstr ""
 
18020
+
 
18021
+#. The capital of Gabon
 
18022
+#: ../data/Locations.xml.in.h:5308
 
18023
+msgid "Libreville"
 
18024
+msgstr ""
 
18025
+
 
18026
+#. LY - Libyan Arab Jamahiriya
 
18027
+#: ../data/Locations.xml.in.h:5310
 
18028
+msgid "Libya"
 
18029
+msgstr ""
 
18030
+
 
18031
+#. A city in Mozambique
 
18032
+#: ../data/Locations.xml.in.h:5312
 
18033
+msgid "Lichinga"
 
18034
+msgstr ""
 
18035
+
 
18036
+#. A city in Rhineland-Palatinate in Germany
 
18037
+#: ../data/Locations.xml.in.h:5314
 
18038
+msgid "Liebenscheid"
 
18039
+msgstr ""
 
18040
+
 
18041
+#. LI - Liechtenstien
 
18042
+#: ../data/Locations.xml.in.h:5316
 
18043
+msgid "Liechtenstein"
 
18044
+msgstr ""
 
18045
+
 
18046
+#. A city in Latvia
 
18047
+#: ../data/Locations.xml.in.h:5318
 
18048
+msgid "Liepāja"
 
18049
+msgstr ""
 
18050
+
 
18051
+#. A city in Hawaii in the United States
 
18052
+#: ../data/Locations.xml.in.h:5320
 
18053
+msgid "Lihue"
 
18054
+msgstr ""
 
18055
+
 
18056
+#. A city in France
 
18057
+#: ../data/Locations.xml.in.h:5322
 
18058
+msgid "Lille"
 
18059
+msgstr ""
 
18060
+
 
18061
+#. A state in Belgium. local name (nl): Limburg. local name
 
18062
+#. (fr): Limbourg. local name (de): Limburg.
 
18063
+#.
 
18064
+#: ../data/Locations.xml.in.h:5326
 
18065
+msgid "Limburg"
 
18066
+msgstr ""
 
18067
+
 
18068
+#. A city in Alaska in the United States
 
18069
+#: ../data/Locations.xml.in.h:5328
 
18070
+msgid "Lime Village"
 
18071
+msgstr ""
 
18072
+
 
18073
+#. A city in France
 
18074
+#: ../data/Locations.xml.in.h:5330
 
18075
+msgid "Limoges"
 
18076
+msgstr ""
 
18077
+
 
18078
+#. A city in Colorado in the United States
 
18079
+#: ../data/Locations.xml.in.h:5332
 
18080
+msgid "Limon"
 
18081
+msgstr ""
 
18082
+
 
18083
+#. The time zone in the Line Islands, one of the three main
 
18084
+#. island groups of Kiribati. This string is only used in
 
18085
+#. places where "Kiribati" is already clear from context.
 
18086
+#.
 
18087
+#: ../data/Locations.xml.in.h:5337
 
18088
+msgid "Line Islands"
 
18089
+msgstr ""
 
18090
+
 
18091
+#. A city in Sweden
 
18092
+#: ../data/Locations.xml.in.h:5339
 
18093
+msgid "Linköping"
 
18094
+msgstr ""
 
18095
+
 
18096
+#. A city in North West England in the United Kingdom
 
18097
+#: ../data/Locations.xml.in.h:5341
 
18098
+msgid "Linton upon Ouse"
 
18099
+msgstr ""
 
18100
+
 
18101
+#. A city in Austria
 
18102
+#: ../data/Locations.xml.in.h:5343
 
18103
+msgid "Linz"
 
18104
+msgstr ""
 
18105
+
 
18106
+#. The capital of Portugal.
 
18107
+#. "Lisbon" is the traditional English name.
 
18108
+#. The local name in Portuguese is "Lisboa".
 
18109
+#.
 
18110
+#: ../data/Locations.xml.in.h:5348
 
18111
+msgid "Lisbon"
 
18112
+msgstr ""
 
18113
+
 
18114
+#. LT - Lithuania
 
18115
+#: ../data/Locations.xml.in.h:5350
 
18116
+msgid "Lithuania"
 
18117
+msgstr ""
 
18118
+
 
18119
+#. A city in Minnesota in the United States
 
18120
+#: ../data/Locations.xml.in.h:5352
 
18121
+msgid "Little Falls"
 
18122
+msgstr ""
 
18123
+
 
18124
+#. A city in British Columbia in Canada
 
18125
+#: ../data/Locations.xml.in.h:5354
 
18126
+msgid "Little Prairie"
 
18127
+msgstr ""
 
18128
+
 
18129
+#. A city in Arkansas in the United States
 
18130
+#: ../data/Locations.xml.in.h:5356
 
18131
+msgid "Little Rock"
 
18132
+msgstr ""
 
18133
+
 
18134
+#. A city in California in the United States
 
18135
+#: ../data/Locations.xml.in.h:5358
 
18136
+msgid "Livermore"
 
18137
+msgstr ""
 
18138
+
 
18139
+#. A city in Montana in the United States
 
18140
+#: ../data/Locations.xml.in.h:5360
 
18141
+msgid "Livingston"
 
18142
+msgstr ""
 
18143
+
 
18144
+#. A city in Zambia
 
18145
+#: ../data/Locations.xml.in.h:5362
 
18146
+msgid "Livingstone"
 
18147
+msgstr ""
 
18148
+
 
18149
+#. A city in Michigan in the United States
 
18150
+#: ../data/Locations.xml.in.h:5364
 
18151
+msgid "Livonia"
 
18152
+msgstr ""
 
18153
+
 
18154
+#. A state in Belgium. local name (fr): Liège. local name
 
18155
+#. (fr_BE): Lîdje. local name (nl): Luik. local name (de):
 
18156
+#. Lüttich.
 
18157
+#.
 
18158
+#: ../data/Locations.xml.in.h:5369
 
18159
+msgid "Liège"
 
18160
+msgstr ""
 
18161
+
 
18162
+#. A city in Croatia
 
18163
+#: ../data/Locations.xml.in.h:5371
 
18164
+msgid "Liška"
 
18165
+msgstr ""
 
18166
+
 
18167
+#. The capital of Slovenia
 
18168
+#: ../data/Locations.xml.in.h:5373
 
18169
+msgid "Ljubljana"
 
18170
+msgstr ""
 
18171
+
 
18172
+#. A city in Sweden
 
18173
+#: ../data/Locations.xml.in.h:5375
 
18174
+msgid "Ljungbyhed"
 
18175
+msgstr ""
 
18176
+
 
18177
+#. A city in Texas in the United States
 
18178
+#: ../data/Locations.xml.in.h:5377
 
18179
+msgid "Llano"
 
18180
+msgstr ""
 
18181
+
 
18182
+#. A city in Saskatchewan in Canada
 
18183
+#: ../data/Locations.xml.in.h:5379
 
18184
+msgid "Lloydminster"
 
18185
+msgstr ""
 
18186
+
 
18187
+#. The capital of Swaziland
 
18188
+#: ../data/Locations.xml.in.h:5381
 
18189
+msgid "Lobamba"
 
18190
+msgstr ""
 
18191
+
 
18192
+#. A city in Utah in the United States
 
18193
+#: ../data/Locations.xml.in.h:5383
 
18194
+msgid "Logan"
 
18195
+msgstr ""
 
18196
+
 
18197
+#. A city in Botswana
 
18198
+#: ../data/Locations.xml.in.h:5385
 
18199
+msgid "Lokerane"
 
18200
+msgstr ""
 
18201
+
 
18202
+#. The capital of Togo
 
18203
+#: ../data/Locations.xml.in.h:5387
 
18204
+msgid "Lome"
 
18205
+msgstr ""
 
18206
+
 
18207
+#. A city in California in the United States
 
18208
+#: ../data/Locations.xml.in.h:5389
 
18209
+msgid "Lompoc"
 
18210
+msgstr ""
 
18211
+
 
18212
+#. A city in Paraná in Brazil
 
18213
+#: ../data/Locations.xml.in.h:5391
 
18214
+msgid "Londrina"
 
18215
+msgstr ""
 
18216
+
 
18217
+#. A city in Wisconsin in the United States
 
18218
+#: ../data/Locations.xml.in.h:5393
 
18219
+msgid "Lone Rock"
 
18220
+msgstr ""
 
18221
+
 
18222
+#. A city in California in the United States
 
18223
+#: ../data/Locations.xml.in.h:5395
 
18224
+msgid "Long Beach"
 
18225
+msgstr ""
 
18226
+
 
18227
+#. A city in Quebec in Canada
 
18228
+#: ../data/Locations.xml.in.h:5397
 
18229
+msgid "Longue-Pointe-de-Mingan"
 
18230
+msgstr ""
 
18231
+
 
18232
+#. A city in Texas in the United States
 
18233
+#: ../data/Locations.xml.in.h:5399
 
18234
+msgid "Longview"
 
18235
+msgstr ""
 
18236
+
 
18237
+#. A city in Minnesota in the United States
 
18238
+#: ../data/Locations.xml.in.h:5401
 
18239
+msgid "Longville"
 
18240
+msgstr ""
 
18241
+
 
18242
+#. The capital of Svalbard and Jan Mayen
 
18243
+#: ../data/Locations.xml.in.h:5403
 
18244
+msgid "Longyearbyen"
 
18245
+msgstr ""
 
18246
+
 
18247
+#. The time zone used on Lord Howe Island, off the east
 
18248
+#. coast of Australia. This string is only used in places
 
18249
+#. where "Australia" is already clear from context.
 
18250
+#.
 
18251
+#: ../data/Locations.xml.in.h:5408
 
18252
+msgid "Lord Howe Island"
 
18253
+msgstr ""
 
18254
+
 
18255
+#. A city in Baja California Sur in Mexico
 
18256
+#: ../data/Locations.xml.in.h:5410
 
18257
+msgid "Loreto"
 
18258
+msgstr ""
 
18259
+
 
18260
+#. A city in California in the United States
 
18261
+#: ../data/Locations.xml.in.h:5412
 
18262
+msgid "Los Alamitos"
 
18263
+msgstr ""
 
18264
+
 
18265
+#. A city in New Mexico in the United States
 
18266
+#: ../data/Locations.xml.in.h:5414
 
18267
+msgid "Los Alamos"
 
18268
+msgstr ""
 
18269
+
 
18270
+#. A city in California in the United States
 
18271
+#: ../data/Locations.xml.in.h:5416
 
18272
+msgid "Los Angeles"
 
18273
+msgstr ""
 
18274
+
 
18275
+#. A city in Spain
 
18276
+#: ../data/Locations.xml.in.h:5418
 
18277
+msgid "Los Baldíos"
 
18278
+msgstr ""
 
18279
+
 
18280
+#. A city in Spain
 
18281
+#: ../data/Locations.xml.in.h:5420
 
18282
+msgid "Los Llanos"
 
18283
+msgstr ""
 
18284
+
 
18285
+#. A city in Sinaloa in Mexico
 
18286
+#: ../data/Locations.xml.in.h:5422
 
18287
+msgid "Los Mochis"
 
18288
+msgstr ""
 
18289
+
 
18290
+#. A city in Scotland in the United Kingdom
 
18291
+#: ../data/Locations.xml.in.h:5424
 
18292
+msgid "Lossiemouth"
 
18293
+msgstr ""
 
18294
+
 
18295
+#. A city in Virginia in the United States
 
18296
+#: ../data/Locations.xml.in.h:5426
 
18297
+msgid "Louisa"
 
18298
+msgstr ""
 
18299
+
 
18300
+#. A city in North Carolina in the United States
 
18301
+#: ../data/Locations.xml.in.h:5428
 
18302
+msgid "Louisburg"
 
18303
+msgstr ""
 
18304
+
 
18305
+#. A state/province/territory in United States
 
18306
+#: ../data/Locations.xml.in.h:5430
 
18307
+msgid "Louisiana"
 
18308
+msgstr ""
 
18309
+
 
18310
+#. A city in Kentucky in the United States
 
18311
+#: ../data/Locations.xml.in.h:5432
 
18312
+msgid "Louisville"
 
18313
+msgstr ""
 
18314
+
 
18315
+#. A city in Nevada in the United States
 
18316
+#: ../data/Locations.xml.in.h:5434
 
18317
+msgid "Lovelock"
 
18318
+msgstr ""
 
18319
+
 
18320
+#. A state in Germany.  The local name is "Niedersachsen".
 
18321
+#. Please use that unless you know that it has a different
 
18322
+#. name in your language.
 
18323
+#.
 
18324
+#: ../data/Locations.xml.in.h:5439
 
18325
+msgid "Lower Saxony"
 
18326
+msgstr ""
 
18327
+
 
18328
+#. A city in Texas in the United States
 
18329
+#: ../data/Locations.xml.in.h:5441
 
18330
+msgid "Lubbock"
 
18331
+msgstr ""
 
18332
+
 
18333
+#. A city in India.
 
18334
+#. The local name in Hindi is "लखनऊ".
 
18335
+#.
 
18336
+#: ../data/Locations.xml.in.h:5445
 
18337
+msgid "Lucknow"
 
18338
+msgstr ""
 
18339
+
 
18340
+#. A city in Saskatchewan in Canada
 
18341
+#: ../data/Locations.xml.in.h:5447
 
18342
+msgid "Lucky Lake"
 
18343
+msgstr ""
 
18344
+
 
18345
+#. A city in Michigan in the United States
 
18346
+#: ../data/Locations.xml.in.h:5449
 
18347
+msgid "Ludington"
 
18348
+msgstr ""
 
18349
+
 
18350
+#. A city in Texas in the United States
 
18351
+#: ../data/Locations.xml.in.h:5451
 
18352
+msgid "Lufkin"
 
18353
+msgstr ""
 
18354
+
 
18355
+#. A city in Switzerland
 
18356
+#: ../data/Locations.xml.in.h:5453
 
18357
+msgid "Lugano"
 
18358
+msgstr ""
 
18359
+
 
18360
+#. A city in Sweden
 
18361
+#: ../data/Locations.xml.in.h:5455
 
18362
+msgid "Luleå"
 
18363
+msgstr ""
 
18364
+
 
18365
+#. A city in North Carolina in the United States
 
18366
+#: ../data/Locations.xml.in.h:5457
 
18367
+msgid "Lumberton"
 
18368
+msgstr ""
 
18369
+
 
18370
+#. A city in Sierra Leone
 
18371
+#: ../data/Locations.xml.in.h:5459
 
18372
+msgid "Lungi"
 
18373
+msgstr ""
 
18374
+
 
18375
+#. A city in Malta
 
18376
+#: ../data/Locations.xml.in.h:5461
 
18377
+msgid "Luqa"
 
18378
+msgstr ""
 
18379
+
 
18380
+#. The capital of Zambia
 
18381
+#: ../data/Locations.xml.in.h:5463
 
18382
+msgid "Lusaka"
 
18383
+msgstr ""
 
18384
+
 
18385
+#. A city in East and South East England in the United
 
18386
+#. Kingdom
 
18387
+#.
 
18388
+#: ../data/Locations.xml.in.h:5467
 
18389
+msgid "Luton"
 
18390
+msgstr ""
 
18391
+
 
18392
+#. A city in Minnesota in the United States
 
18393
+#: ../data/Locations.xml.in.h:5469
 
18394
+msgid "Luverne"
 
18395
+msgstr ""
 
18396
+
 
18397
+#. A city in France
 
18398
+#: ../data/Locations.xml.in.h:5471
 
18399
+msgid "Luxeuil-les-Bains"
 
18400
+msgstr ""
 
18401
+
 
18402
+#. A city in Egypt.
 
18403
+#. "Luxor" is the traditional English name.
 
18404
+#. The local name in Arabic is "Al Uqsur".
 
18405
+#.
 
18406
+#: ../data/Locations.xml.in.h:5476
 
18407
+msgid "Luxor"
 
18408
+msgstr ""
 
18409
+
 
18410
+#. A city in Slovakia
 
18411
+#: ../data/Locations.xml.in.h:5478
 
18412
+msgid "Lučenec"
 
18413
+msgstr ""
 
18414
+
 
18415
+#. A city in Sweden
 
18416
+#: ../data/Locations.xml.in.h:5480
 
18417
+msgid "Lycksele"
 
18418
+msgstr ""
 
18419
+
 
18420
+#. A city in East and South East England in the United
 
18421
+#. Kingdom
 
18422
+#.
 
18423
+#: ../data/Locations.xml.in.h:5484
 
18424
+msgid "Lydd"
 
18425
+msgstr ""
 
18426
+
 
18427
+#. A city in Virginia in the United States
 
18428
+#: ../data/Locations.xml.in.h:5486
 
18429
+msgid "Lynchburg"
 
18430
+msgstr ""
 
18431
+
 
18432
+#. A city in South and South West England in the United
 
18433
+#. Kingdom
 
18434
+#.
 
18435
+#: ../data/Locations.xml.in.h:5490
 
18436
+msgid "Lyneham"
 
18437
+msgstr ""
 
18438
+
 
18439
+#. A city in Manitoba in Canada
 
18440
+#: ../data/Locations.xml.in.h:5492
 
18441
+msgid "Lynn Lake"
 
18442
+msgstr ""
 
18443
+
 
18444
+#. A city in France
 
18445
+#: ../data/Locations.xml.in.h:5494
 
18446
+msgid "Lyon"
 
18447
+msgstr ""
 
18448
+
 
18449
+#. A city in British Columbia in Canada
 
18450
+#: ../data/Locations.xml.in.h:5496
 
18451
+msgid "Lytton"
 
18452
+msgstr ""
 
18453
+
 
18454
+#. A city in Greece
 
18455
+#: ../data/Locations.xml.in.h:5498
 
18456
+msgid "Lárisa"
 
18457
+msgstr ""
 
18458
+
 
18459
+#. A city in Yemen
 
18460
+#: ../data/Locations.xml.in.h:5500
 
18461
+msgid "Ma'rib"
 
18462
+msgstr ""
 
18463
+
 
18464
+#. A city in the Netherlands
 
18465
+#: ../data/Locations.xml.in.h:5502
 
18466
+msgid "Maastricht"
 
18467
+msgstr ""
 
18468
+
 
18469
+#. MK - The Former Yugoslav Republic of Macedonia
 
18470
+#: ../data/Locations.xml.in.h:5504
 
18471
+msgid "Macedonia"
 
18472
+msgstr ""
 
18473
+
 
18474
+#. A city in Alagoas in Brazil
 
18475
+#: ../data/Locations.xml.in.h:5506
 
18476
+msgid "Maceió"
 
18477
+msgstr ""
 
18478
+
 
18479
+#. A city in Michigan in the United States
 
18480
+#: ../data/Locations.xml.in.h:5508
 
18481
+msgid "Mackinac Island"
 
18482
+msgstr ""
 
18483
+
 
18484
+#. A city in Illinois in the United States
 
18485
+#: ../data/Locations.xml.in.h:5510
 
18486
+msgid "Macomb"
 
18487
+msgstr ""
 
18488
+
 
18489
+#. A city in Georgia in the United States
 
18490
+#: ../data/Locations.xml.in.h:5512
 
18491
+msgid "Macon"
 
18492
+msgstr ""
 
18493
+
 
18494
+#. MG - Madagascar
 
18495
+#: ../data/Locations.xml.in.h:5514
 
18496
+msgid "Madagascar"
 
18497
+msgstr ""
 
18498
+
 
18499
+#. This refers to the time zone for the Portuguese island
 
18500
+#. of Madeira. The string is only used in places where
 
18501
+#. "Portugal" is already understood from context.
 
18502
+#.
 
18503
+#: ../data/Locations.xml.in.h:5519
 
18504
+msgid "Madeira"
 
18505
+msgstr ""
 
18506
+
 
18507
+#. A city in California in the United States
 
18508
+#: ../data/Locations.xml.in.h:5521
 
18509
+msgid "Madera"
 
18510
+msgstr ""
 
18511
+
 
18512
+#. The capital of Spain
 
18513
+#: ../data/Locations.xml.in.h:5523
 
18514
+msgid "Madrid"
 
18515
+msgstr ""
 
18516
+
 
18517
+#. A city in Thailand
 
18518
+#: ../data/Locations.xml.in.h:5525
 
18519
+msgid "Mae Hong Son"
 
18520
+msgstr ""
 
18521
+
 
18522
+#. A city in Russia.
 
18523
+#. The local name in Russian is "Магадан".
 
18524
+#.
 
18525
+#: ../data/Locations.xml.in.h:5529
 
18526
+msgid "Magadan"
 
18527
+msgstr ""
 
18528
+
 
18529
+#. A Russian time zone, used in the Magadan oblast and
 
18530
+#. surrounding areas of eastern Russia. The Russian name is
 
18531
+#. "Магаданское время". This string is only used in places
 
18532
+#. where "Russia" is already clear from context.
 
18533
+#.
 
18534
+#: ../data/Locations.xml.in.h:5535
 
18535
+msgid "Magadan Time"
 
18536
+msgstr ""
 
18537
+
 
18538
+#. A city in Bolivia
 
18539
+#: ../data/Locations.xml.in.h:5537
 
18540
+msgid "Magdalena"
 
18541
+msgstr ""
 
18542
+
 
18543
+#. A city in Madagascar
 
18544
+#: ../data/Locations.xml.in.h:5539
 
18545
+msgid "Mahajanga"
 
18546
+msgstr ""
 
18547
+
 
18548
+#. A city in Israel
 
18549
+#: ../data/Locations.xml.in.h:5541
 
18550
+msgid "Mahanayim"
 
18551
+msgstr ""
 
18552
+
 
18553
+#. A city in Israel
 
18554
+#: ../data/Locations.xml.in.h:5543
 
18555
+msgid "Mahane Yisra'el"
 
18556
+msgstr ""
 
18557
+
 
18558
+#. A city in Spain
 
18559
+#: ../data/Locations.xml.in.h:5545
 
18560
+msgid "Mahón"
 
18561
+msgstr ""
 
18562
+
 
18563
+#. A state/province/territory in United States
 
18564
+#: ../data/Locations.xml.in.h:5547
 
18565
+msgid "Maine"
 
18566
+msgstr ""
 
18567
+
 
18568
+#. This refers to the time zone for mainland Chile (as
 
18569
+#. opposed to the time zone for Easter Island).
 
18570
+#.
 
18571
+#: ../data/Locations.xml.in.h:5551
 
18572
+msgid "Mainland Chile"
 
18573
+msgstr ""
 
18574
+
 
18575
+#. This refers to the time zone for mainland Ecuador (as
 
18576
+#. opposed to the time zone for the Galapagos Islands).
 
18577
+#.
 
18578
+#: ../data/Locations.xml.in.h:5555
 
18579
+msgid "Mainland Ecuador"
 
18580
+msgstr ""
 
18581
+
 
18582
+#. This refers to the "mainland" of New Zealand (ie, North
 
18583
+#. Island and South Island), to distinguish it from the
 
18584
+#. Chatham Islands. The string is only used in places where
 
18585
+#. "New Zealand" is already clear from context. FIXME: is
 
18586
+#. there a better name for this? "Mainland" seems odd in
 
18587
+#. reference to an island nation...
 
18588
+#.
 
18589
+#: ../data/Locations.xml.in.h:5563
 
18590
+msgid "Mainland New Zealand"
 
18591
+msgstr ""
 
18592
+
 
18593
+#. This refers to the time zone for mainland Portugal (as
 
18594
+#. opposed to the time zone for the Azores).
 
18595
+#.
 
18596
+#: ../data/Locations.xml.in.h:5567
 
18597
+msgid "Mainland Portugal"
 
18598
+msgstr ""
 
18599
+
 
18600
+#. This refers to the time zone for mainland Spain (as
 
18601
+#. opposed to the time zone for the Canary Islands).
 
18602
+#.
 
18603
+#: ../data/Locations.xml.in.h:5571
 
18604
+msgid "Mainland Spain"
 
18605
+msgstr ""
 
18606
+
 
18607
+#. The capital of the Marshall Islands
 
18608
+#: ../data/Locations.xml.in.h:5573
 
18609
+msgid "Majuro"
 
18610
+msgstr ""
 
18611
+
 
18612
+#. A city in Indonesia
 
18613
+#: ../data/Locations.xml.in.h:5575
 
18614
+msgid "Makassar"
 
18615
+msgstr ""
 
18616
+
 
18617
+#. A city in Newfoundland and Labrador in Canada
 
18618
+#: ../data/Locations.xml.in.h:5577
 
18619
+msgid "Makkovik"
 
18620
+msgstr ""
 
18621
+
 
18622
+#. The capital of Equatorial Guinea
 
18623
+#: ../data/Locations.xml.in.h:5579
 
18624
+msgid "Malabo"
 
18625
+msgstr ""
 
18626
+
 
18627
+#. A city in Turkey
 
18628
+#: ../data/Locations.xml.in.h:5581
 
18629
+msgid "Malatya"
 
18630
+msgstr ""
 
18631
+
 
18632
+#. MW - Malawi
 
18633
+#: ../data/Locations.xml.in.h:5583
 
18634
+msgid "Malawi"
 
18635
+msgstr ""
 
18636
+
 
18637
+#. MY - Malaysia
 
18638
+#: ../data/Locations.xml.in.h:5585
 
18639
+msgid "Malaysia"
 
18640
+msgstr ""
 
18641
+
 
18642
+#. MV - Maldives
 
18643
+#: ../data/Locations.xml.in.h:5587
 
18644
+msgid "Maldives"
 
18645
+msgstr ""
 
18646
+
 
18647
+#. A city in Uruguay
 
18648
+#: ../data/Locations.xml.in.h:5589
 
18649
+msgid "Maldonado"
 
18650
+msgstr ""
 
18651
+
 
18652
+#. The capital of the Maldives.
 
18653
+#. "Male" is the traditional English name.
 
18654
+#. The local name in Dhivehi is "Maale".
 
18655
+#.
 
18656
+#: ../data/Locations.xml.in.h:5594
 
18657
+msgid "Male"
 
18658
+msgstr ""
 
18659
+
 
18660
+#. ML - Mali
 
18661
+#: ../data/Locations.xml.in.h:5596
 
18662
+msgid "Mali"
 
18663
+msgstr ""
 
18664
+
 
18665
+#. A city in Sweden
 
18666
+#: ../data/Locations.xml.in.h:5598
 
18667
+msgid "Malmö"
 
18668
+msgstr ""
 
18669
+
 
18670
+#. The capital of Mayotte
 
18671
+#: ../data/Locations.xml.in.h:5600
 
18672
+msgid "Mamoudzou"
 
18673
+msgstr ""
 
18674
+
 
18675
+#. The capital of Nicaragua
 
18676
+#: ../data/Locations.xml.in.h:5602
 
18677
+msgid "Managua"
 
18678
+msgstr ""
 
18679
+
 
18680
+#. The capital of Bahrain.
 
18681
+#. "Manama" is the traditional English name.
 
18682
+#. The local name in Arabic is "Al Manamah / المنامة".
 
18683
+#.
 
18684
+#: ../data/Locations.xml.in.h:5607
 
18685
+msgid "Manama"
 
18686
+msgstr ""
 
18687
+
 
18688
+#. A city in Virginia in the United States
 
18689
+#: ../data/Locations.xml.in.h:5609
 
18690
+msgid "Manassas"
 
18691
+msgstr ""
 
18692
+
 
18693
+#. A city in Amazonas in Brazil
 
18694
+#: ../data/Locations.xml.in.h:5611
 
18695
+msgid "Manaus"
 
18696
+msgstr ""
 
18697
+
 
18698
+#. A city in the Dominican Republic
 
18699
+#: ../data/Locations.xml.in.h:5613
 
18700
+msgid "Mancha Nueva"
 
18701
+msgstr ""
 
18702
+
 
18703
+#. A city in Kansas in the United States
 
18704
+#: ../data/Locations.xml.in.h:5615
 
18705
+msgid "Manhattan"
 
18706
+msgstr ""
 
18707
+
 
18708
+#. A city in Amazonas in Brazil
 
18709
+#: ../data/Locations.xml.in.h:5617
 
18710
+msgid "Manicoré"
 
18711
+msgstr ""
 
18712
+
 
18713
+#. The capital of the Philippines
 
18714
+#: ../data/Locations.xml.in.h:5619
 
18715
+msgid "Manila"
 
18716
+msgstr ""
 
18717
+
 
18718
+#. A city in Michigan in the United States
 
18719
+#: ../data/Locations.xml.in.h:5621
 
18720
+msgid "Manistee"
 
18721
+msgstr ""
 
18722
+
 
18723
+#. A city in Michigan in the United States
 
18724
+#: ../data/Locations.xml.in.h:5623
 
18725
+msgid "Manistique"
 
18726
+msgstr ""
 
18727
+
 
18728
+#. A state/province/territory in Canada
 
18729
+#: ../data/Locations.xml.in.h:5625
 
18730
+msgid "Manitoba"
 
18731
+msgstr ""
 
18732
+
 
18733
+#. A city in Wisconsin in the United States
 
18734
+#: ../data/Locations.xml.in.h:5627
 
18735
+msgid "Manitowoc"
 
18736
+msgstr ""
 
18737
+
 
18738
+#. A city in Quebec in Canada
 
18739
+#: ../data/Locations.xml.in.h:5629
 
18740
+msgid "Maniwaki"
 
18741
+msgstr ""
 
18742
+
 
18743
+#. A city in Minnesota in the United States
 
18744
+#: ../data/Locations.xml.in.h:5631
 
18745
+msgid "Mankato"
 
18746
+msgstr ""
 
18747
+
 
18748
+#. A city in Alaska in the United States
 
18749
+#: ../data/Locations.xml.in.h:5633
 
18750
+msgid "Manley Hot Springs"
 
18751
+msgstr ""
 
18752
+
 
18753
+#. A city in Ohio in the United States
 
18754
+#: ../data/Locations.xml.in.h:5635
 
18755
+msgid "Mansfield"
 
18756
+msgstr ""
 
18757
+
 
18758
+#. A city in East and South East England in the United
 
18759
+#. Kingdom
 
18760
+#.
 
18761
+#: ../data/Locations.xml.in.h:5639
 
18762
+msgid "Manston"
 
18763
+msgstr ""
 
18764
+
 
18765
+#. A city in Ecuador
 
18766
+#: ../data/Locations.xml.in.h:5641
 
18767
+msgid "Manta"
 
18768
+msgstr ""
 
18769
+
 
18770
+#. A city in North Carolina in the United States
 
18771
+#: ../data/Locations.xml.in.h:5643
 
18772
+msgid "Manteo"
 
18773
+msgstr ""
 
18774
+
 
18775
+#. A city in Swaziland
 
18776
+#: ../data/Locations.xml.in.h:5645
 
18777
+msgid "Manzini"
 
18778
+msgstr ""
 
18779
+
 
18780
+#. A city in Saskatchewan in Canada
 
18781
+#: ../data/Locations.xml.in.h:5647
 
18782
+msgid "Maple Creek"
 
18783
+msgstr ""
 
18784
+
 
18785
+#. A city in Minnesota in the United States
 
18786
+#: ../data/Locations.xml.in.h:5649
 
18787
+msgid "Maple Lake"
 
18788
+msgstr ""
 
18789
+
 
18790
+#. The capital of Mozambique
 
18791
+#: ../data/Locations.xml.in.h:5651
 
18792
+msgid "Maputo"
 
18793
+msgstr ""
 
18794
+
 
18795
+#. A city in Argentina
 
18796
+#: ../data/Locations.xml.in.h:5653
 
18797
+msgid "Mar del Plata"
 
18798
+msgstr ""
 
18799
+
 
18800
+#. A city in Pará in Brazil
 
18801
+#: ../data/Locations.xml.in.h:5655
 
18802
+msgid "Marabá"
 
18803
+msgstr ""
 
18804
+
 
18805
+#. A city in Venezuela
 
18806
+#: ../data/Locations.xml.in.h:5657
 
18807
+msgid "Maracaibo"
 
18808
+msgstr ""
 
18809
+
 
18810
+#. A city in Venezuela
 
18811
+#: ../data/Locations.xml.in.h:5659
 
18812
+msgid "Maracay"
 
18813
+msgstr ""
 
18814
+
 
18815
+#. A state/province/territory in Brazil
 
18816
+#: ../data/Locations.xml.in.h:5661
 
18817
+msgid "Maranhão"
 
18818
+msgstr ""
 
18819
+
 
18820
+#. A city in Florida in the United States
 
18821
+#: ../data/Locations.xml.in.h:5663
 
18822
+msgid "Marathon"
 
18823
+msgstr ""
 
18824
+
 
18825
+#. A city in Texas in the United States
 
18826
+#: ../data/Locations.xml.in.h:5665
 
18827
+msgid "Marfa"
 
18828
+msgstr ""
 
18829
+
 
18830
+#. A city in East and South East England in the United
 
18831
+#. Kingdom
 
18832
+#.
 
18833
+#: ../data/Locations.xml.in.h:5669
 
18834
+msgid "Marham"
 
18835
+msgstr ""
 
18836
+
 
18837
+#. A city in Florida in the United States
 
18838
+#: ../data/Locations.xml.in.h:5671
 
18839
+msgid "Marianna"
 
18840
+msgstr ""
 
18841
+
 
18842
+#. A city in Slovenia
 
18843
+#: ../data/Locations.xml.in.h:5673
 
18844
+msgid "Maribor"
 
18845
+msgstr ""
 
18846
+
 
18847
+#. A city in Quebec in Canada
 
18848
+#: ../data/Locations.xml.in.h:5675
 
18849
+msgid "Maricourt"
 
18850
+msgstr ""
 
18851
+
 
18852
+#. A city in the Åland Islands.
 
18853
+#. The local name in Finnish is "Maarianhamina".
 
18854
+#.
 
18855
+#: ../data/Locations.xml.in.h:5679
 
18856
+msgid "Mariehamn"
 
18857
+msgstr ""
 
18858
+
 
18859
+#. A city in Georgia in the United States
 
18860
+#: ../data/Locations.xml.in.h:5681
 
18861
+msgid "Marietta"
 
18862
+msgstr ""
 
18863
+
 
18864
+#. A city in Dominica
 
18865
+#: ../data/Locations.xml.in.h:5683
 
18866
+msgid "Marigot"
 
18867
+msgstr ""
 
18868
+
 
18869
+#. A city in Paraná in Brazil
 
18870
+#: ../data/Locations.xml.in.h:5685
 
18871
+msgid "Maringá"
 
18872
+msgstr ""
 
18873
+
 
18874
+#. This refers to the time zone in the Marquesas Islands of
 
18875
+#. French Polynesia. This string is only used in places
 
18876
+#. where "French Polynesia" is already clear from context.
 
18877
+#.
 
18878
+#: ../data/Locations.xml.in.h:5690
 
18879
+msgid "Marquesas Islands"
 
18880
+msgstr ""
 
18881
+
 
18882
+#. A city in Michigan in the United States
 
18883
+#: ../data/Locations.xml.in.h:5692
 
18884
+msgid "Marquette"
 
18885
+msgstr ""
 
18886
+
 
18887
+#. A city in Morocco
 
18888
+#: ../data/Locations.xml.in.h:5694
 
18889
+msgid "Marrakech"
 
18890
+msgstr ""
 
18891
+
 
18892
+#. A city in Egypt
 
18893
+#: ../data/Locations.xml.in.h:5696
 
18894
+msgid "Marsa Matruh"
 
18895
+msgstr ""
 
18896
+
 
18897
+#. A city in France
 
18898
+#: ../data/Locations.xml.in.h:5698
 
18899
+msgid "Marseille"
 
18900
+msgstr ""
 
18901
+
 
18902
+#. MH - Marshall Islands
 
18903
+#: ../data/Locations.xml.in.h:5700
 
18904
+msgid "Marshall Islands"
 
18905
+msgstr ""
 
18906
+
 
18907
+#. A city in Iowa in the United States
 
18908
+#: ../data/Locations.xml.in.h:5702
 
18909
+msgid "Marshalltown"
 
18910
+msgstr ""
 
18911
+
 
18912
+#. A city in Wisconsin in the United States
 
18913
+#: ../data/Locations.xml.in.h:5704
 
18914
+msgid "Marshfield"
 
18915
+msgstr ""
 
18916
+
 
18917
+#. MQ - Martinique, an overseas department of France in the
 
18918
+#. Caribbean.
 
18919
+#.
 
18920
+#: ../data/Locations.xml.in.h:5708
 
18921
+msgid "Martinique"
 
18922
+msgstr ""
 
18923
+
 
18924
+#. A city in West Virginia in the United States
 
18925
+#: ../data/Locations.xml.in.h:5710
 
18926
+msgid "Martinsburg"
 
18927
+msgstr ""
 
18928
+
 
18929
+#. A city in Virginia in the United States
 
18930
+#: ../data/Locations.xml.in.h:5712
 
18931
+msgid "Martinsville"
 
18932
+msgstr ""
 
18933
+
 
18934
+#. A city in Newfoundland and Labrador in Canada
 
18935
+#: ../data/Locations.xml.in.h:5714
 
18936
+msgid "Mary's Harbour"
 
18937
+msgstr ""
 
18938
+
 
18939
+#. A state/province/territory in United States
 
18940
+#: ../data/Locations.xml.in.h:5716
 
18941
+msgid "Maryland"
 
18942
+msgstr ""
 
18943
+
 
18944
+#. A city in the Philippines
 
18945
+#: ../data/Locations.xml.in.h:5718
 
18946
+msgid "Masbate"
 
18947
+msgstr ""
 
18948
+
 
18949
+#. A city in Algeria
 
18950
+#: ../data/Locations.xml.in.h:5720
 
18951
+msgid "Mascara"
 
18952
+msgstr ""
 
18953
+
 
18954
+#. A city in Iran.
 
18955
+#. The name is also written "مشهد".
 
18956
+#.
 
18957
+#: ../data/Locations.xml.in.h:5724
 
18958
+msgid "Mashhad"
 
18959
+msgstr ""
 
18960
+
 
18961
+#. A city in Iran.
 
18962
+#. The name is also written "مسجد سلیمان".
 
18963
+#.
 
18964
+#: ../data/Locations.xml.in.h:5728
 
18965
+msgid "Masjed Soleyman"
 
18966
+msgstr ""
 
18967
+
 
18968
+#. A city in Saudi Arabia
 
18969
+#: ../data/Locations.xml.in.h:5730
 
18970
+msgid "Masjid Ibn Rashid"
 
18971
+msgstr ""
 
18972
+
 
18973
+#. A city in Michigan in the United States
 
18974
+#: ../data/Locations.xml.in.h:5732
 
18975
+msgid "Mason"
 
18976
+msgstr ""
 
18977
+
 
18978
+#. A city in Iowa in the United States
 
18979
+#: ../data/Locations.xml.in.h:5734
 
18980
+msgid "Mason City"
 
18981
+msgstr ""
 
18982
+
 
18983
+#. A state/province/territory in United States
 
18984
+#: ../data/Locations.xml.in.h:5736
 
18985
+msgid "Massachusetts"
 
18986
+msgstr ""
 
18987
+
 
18988
+#. A city in New York in the United States
 
18989
+#: ../data/Locations.xml.in.h:5738
 
18990
+msgid "Massena"
 
18991
+msgstr ""
 
18992
+
 
18993
+#. A city in Costa Rica
 
18994
+#: ../data/Locations.xml.in.h:5740
 
18995
+msgid "Mata de Palo"
 
18996
+msgstr ""
 
18997
+
 
18998
+#. A city in Wallis and Futuna
 
18999
+#: ../data/Locations.xml.in.h:5742
 
19000
+msgid "Mata'utu"
 
19001
+msgstr ""
 
19002
+
 
19003
+#. A city in Quebec in Canada
 
19004
+#: ../data/Locations.xml.in.h:5744
 
19005
+msgid "Matagami"
 
19006
+msgstr ""
 
19007
+
 
19008
+#. A city in Tamaulipas in Mexico
 
19009
+#: ../data/Locations.xml.in.h:5746
 
19010
+msgid "Matamoros"
 
19011
+msgstr ""
 
19012
+
 
19013
+#. A city in Cuba
 
19014
+#: ../data/Locations.xml.in.h:5748
 
19015
+msgid "Matanzas"
 
19016
+msgstr ""
 
19017
+
 
19018
+#. A city in Japan
 
19019
+#: ../data/Locations.xml.in.h:5750
 
19020
+msgid "Matsubara"
 
19021
+msgstr ""
 
19022
+
 
19023
+#. A city in Japan
 
19024
+#: ../data/Locations.xml.in.h:5752
 
19025
+msgid "Matsumoto"
 
19026
+msgstr ""
 
19027
+
 
19028
+#. A city in Japan
 
19029
+#: ../data/Locations.xml.in.h:5754
 
19030
+msgid "Matsushima"
 
19031
+msgstr ""
 
19032
+
 
19033
+#. A city in Japan
 
19034
+#: ../data/Locations.xml.in.h:5756
 
19035
+msgid "Matsuyama"
 
19036
+msgstr ""
 
19037
+
 
19038
+#. A city in Illinois in the United States
 
19039
+#: ../data/Locations.xml.in.h:5758
 
19040
+msgid "Mattoon"
 
19041
+msgstr ""
 
19042
+
 
19043
+#. A city in Venezuela
 
19044
+#: ../data/Locations.xml.in.h:5760
 
19045
+msgid "Maturín"
 
19046
+msgstr ""
 
19047
+
 
19048
+#. A city in Botswana
 
19049
+#: ../data/Locations.xml.in.h:5762
 
19050
+msgid "Maun"
 
19051
+msgstr ""
 
19052
+
 
19053
+#. MR - Mauritania
 
19054
+#: ../data/Locations.xml.in.h:5764
 
19055
+msgid "Mauritania"
 
19056
+msgstr ""
 
19057
+
 
19058
+#. MU - Mauritius
 
19059
+#: ../data/Locations.xml.in.h:5766
 
19060
+msgid "Mauritius"
 
19061
+msgstr ""
 
19062
+
 
19063
+#. An Australian research station in Antarctica. The string
 
19064
+#. is only used in places where "Antarctica" is already
 
19065
+#. clear from context.
 
19066
+#.
 
19067
+#: ../data/Locations.xml.in.h:5771
 
19068
+msgid "Mawson Station"
 
19069
+msgstr ""
 
19070
+
 
19071
+#. A city in North Carolina in the United States
 
19072
+#: ../data/Locations.xml.in.h:5773
 
19073
+msgid "Maxton"
 
19074
+msgstr ""
 
19075
+
 
19076
+#. A city in Yukon Territory in Canada
 
19077
+#: ../data/Locations.xml.in.h:5775
 
19078
+msgid "Mayo"
 
19079
+msgstr ""
 
19080
+
 
19081
+#. YT - Mayotte
 
19082
+#: ../data/Locations.xml.in.h:5777
 
19083
+msgid "Mayotte"
 
19084
+msgstr ""
 
19085
+
 
19086
+#. A city in Florida in the United States
 
19087
+#: ../data/Locations.xml.in.h:5779
 
19088
+msgid "Mayport"
 
19089
+msgstr ""
 
19090
+
 
19091
+#. A city in Sinaloa in Mexico
 
19092
+#: ../data/Locations.xml.in.h:5781
 
19093
+msgid "Mazatlán"
 
19094
+msgstr ""
 
19095
+
 
19096
+#. The capital of Swaziland
 
19097
+#: ../data/Locations.xml.in.h:5783
 
19098
+msgid "Mbabane"
 
19099
+msgstr ""
 
19100
+
 
19101
+#. A city in Comoros
 
19102
+#: ../data/Locations.xml.in.h:5785
 
19103
+msgid "Mbaléni"
 
19104
+msgstr ""
 
19105
+
 
19106
+#. A city in Tanzania
 
19107
+#: ../data/Locations.xml.in.h:5787
 
19108
+msgid "Mbeya"
 
19109
+msgstr ""
 
19110
+
 
19111
+#. A city in Oklahoma in the United States
 
19112
+#: ../data/Locations.xml.in.h:5789
 
19113
+msgid "McAlester"
 
19114
+msgstr ""
 
19115
+
 
19116
+#. A city in Texas in the United States
 
19117
+#: ../data/Locations.xml.in.h:5791
 
19118
+msgid "McAllen"
 
19119
+msgstr ""
 
19120
+
 
19121
+#. A city in Idaho in the United States
 
19122
+#: ../data/Locations.xml.in.h:5793
 
19123
+msgid "McCall"
 
19124
+msgstr ""
 
19125
+
 
19126
+#. A city in Alaska in the United States
 
19127
+#: ../data/Locations.xml.in.h:5795
 
19128
+msgid "McCarthy"
 
19129
+msgstr ""
 
19130
+
 
19131
+#. A city in Mississippi in the United States
 
19132
+#: ../data/Locations.xml.in.h:5797
 
19133
+msgid "McComb"
 
19134
+msgstr ""
 
19135
+
 
19136
+#. A city in Nebraska in the United States
 
19137
+#: ../data/Locations.xml.in.h:5799
 
19138
+msgid "McCook"
 
19139
+msgstr ""
 
19140
+
 
19141
+#. A city in Alaska in the United States
 
19142
+#: ../data/Locations.xml.in.h:5801
 
19143
+msgid "McGrath"
 
19144
+msgstr ""
 
19145
+
 
19146
+#. A city in Minnesota in the United States
 
19147
+#: ../data/Locations.xml.in.h:5803
 
19148
+msgid "McGregor"
 
19149
+msgstr ""
 
19150
+
 
19151
+#. A city in Alaska in the United States
 
19152
+#: ../data/Locations.xml.in.h:5805
 
19153
+msgid "McKinley Park"
 
19154
+msgstr ""
 
19155
+
 
19156
+#. A city in Texas in the United States
 
19157
+#: ../data/Locations.xml.in.h:5807
 
19158
+msgid "McKinney"
 
19159
+msgstr ""
 
19160
+
 
19161
+#. A city in British Columbia in Canada
 
19162
+#: ../data/Locations.xml.in.h:5809
 
19163
+msgid "McLeod Lake"
 
19164
+msgstr ""
 
19165
+
 
19166
+#. A city in Oregon in the United States
 
19167
+#: ../data/Locations.xml.in.h:5811
 
19168
+msgid "McMinnville"
 
19169
+msgstr ""
 
19170
+
 
19171
+#. An American research station in Antarctica, which keeps
 
19172
+#. the same time as New Zealand. The string is only used in
 
19173
+#. places where "Antarctica" is already clear from context.
 
19174
+#.
 
19175
+#: ../data/Locations.xml.in.h:5816
 
19176
+msgid "McMurdo Station (New Zealand Time)"
 
19177
+msgstr ""
 
19178
+
 
19179
+#. A city in Oregon in the United States
 
19180
+#: ../data/Locations.xml.in.h:5818
 
19181
+msgid "Meacham"
 
19182
+msgstr ""
 
19183
+
 
19184
+#. A city in Saskatchewan in Canada
 
19185
+#: ../data/Locations.xml.in.h:5820
 
19186
+msgid "Meadow Lake"
 
19187
+msgstr ""
 
19188
+
 
19189
+#. A city in Pennsylvania in the United States
 
19190
+#: ../data/Locations.xml.in.h:5822
 
19191
+msgid "Meadville"
 
19192
+msgstr ""
 
19193
+
 
19194
+#. A city in Saudi Arabia.
 
19195
+#. "Mecca" is the traditional English name.
 
19196
+#. The local name in Arabic is "Makkah".
 
19197
+#.
 
19198
+#: ../data/Locations.xml.in.h:5827
 
19199
+msgid "Mecca"
 
19200
+msgstr ""
 
19201
+
 
19202
+#. A state in Germany.  The local name is
 
19203
+#. "Mecklenburg-Vorpommern". Please use that unless you know
 
19204
+#. that it has a different name in your language.
 
19205
+#.
 
19206
+#: ../data/Locations.xml.in.h:5832
 
19207
+msgid "Mecklenburg-Western Pomerania"
 
19208
+msgstr ""
 
19209
+
 
19210
+#. A city in Indonesia
 
19211
+#: ../data/Locations.xml.in.h:5834
 
19212
+msgid "Medan"
 
19213
+msgstr ""
 
19214
+
 
19215
+#. A city in Colombia
 
19216
+#: ../data/Locations.xml.in.h:5836
 
19217
+msgid "Medellín"
 
19218
+msgstr ""
 
19219
+
 
19220
+#. A city in Alberta in Canada
 
19221
+#: ../data/Locations.xml.in.h:5838
 
19222
+msgid "Medicine Hat"
 
19223
+msgstr ""
 
19224
+
 
19225
+#. A city in Kansas in the United States
 
19226
+#: ../data/Locations.xml.in.h:5840
 
19227
+msgid "Medicine Lodge"
 
19228
+msgstr ""
 
19229
+
 
19230
+#. A city in Saudi Arabia.
 
19231
+#. "Medina" is the traditional English name.
 
19232
+#. The local name in Arabic is "Al Madinah al Munawwarah".
 
19233
+#.
 
19234
+#: ../data/Locations.xml.in.h:5845
 
19235
+msgid "Medina"
 
19236
+msgstr ""
 
19237
+
 
19238
+#. A city in Colorado in the United States
 
19239
+#: ../data/Locations.xml.in.h:5847
 
19240
+msgid "Meeker"
 
19241
+msgstr ""
 
19242
+
 
19243
+#. A city in Norway
 
19244
+#: ../data/Locations.xml.in.h:5849
 
19245
+msgid "Mehamn"
 
19246
+msgstr ""
 
19247
+
 
19248
+#. A city in Denmark
 
19249
+#: ../data/Locations.xml.in.h:5851
 
19250
+msgid "Mejlby"
 
19251
+msgstr ""
 
19252
+
 
19253
+#. A city in Morocco
 
19254
+#: ../data/Locations.xml.in.h:5853
 
19255
+msgid "Meknes"
 
19256
+msgstr ""
 
19257
+
 
19258
+#. A city in Alaska in the United States
 
19259
+#: ../data/Locations.xml.in.h:5855
 
19260
+msgid "Mekoryuk"
 
19261
+msgstr ""
 
19262
+
 
19263
+#. A city in Malaysia
 
19264
+#: ../data/Locations.xml.in.h:5857
 
19265
+msgid "Melaka"
 
19266
+msgstr ""
 
19267
+
 
19268
+#. The capital of Palau
 
19269
+#: ../data/Locations.xml.in.h:5859
 
19270
+msgid "Melekeok"
 
19271
+msgstr ""
 
19272
+
 
19273
+#. A city in Virginia in the United States
 
19274
+#: ../data/Locations.xml.in.h:5861
 
19275
+msgid "Melfa"
 
19276
+msgstr ""
 
19277
+
 
19278
+#. A city in Saskatchewan in Canada
 
19279
+#: ../data/Locations.xml.in.h:5863
 
19280
+msgid "Melfort"
 
19281
+msgstr ""
 
19282
+
 
19283
+#. A city in Spain
 
19284
+#: ../data/Locations.xml.in.h:5865
 
19285
+msgid "Melilla"
 
19286
+msgstr ""
 
19287
+
 
19288
+#. A city in France
 
19289
+#: ../data/Locations.xml.in.h:5867
 
19290
+msgid "Melun"
 
19291
+msgstr ""
 
19292
+
 
19293
+#. A city in Japan
 
19294
+#: ../data/Locations.xml.in.h:5869
 
19295
+msgid "Memambetsu"
 
19296
+msgstr ""
 
19297
+
 
19298
+#. A city in Tennessee in the United States
 
19299
+#: ../data/Locations.xml.in.h:5871
 
19300
+msgid "Memphis"
 
19301
+msgstr ""
 
19302
+
 
19303
+#. A city in Arkansas in the United States
 
19304
+#: ../data/Locations.xml.in.h:5873
 
19305
+msgid "Mena"
 
19306
+msgstr ""
 
19307
+
 
19308
+#. A city in Argentina
 
19309
+#: ../data/Locations.xml.in.h:5875
 
19310
+msgid "Mendoza"
 
19311
+msgstr ""
 
19312
+
 
19313
+#. A city in Venezuela
 
19314
+#: ../data/Locations.xml.in.h:5877
 
19315
+msgid "Mene Grande"
 
19316
+msgstr ""
 
19317
+
 
19318
+#. A city in Michigan in the United States
 
19319
+#: ../data/Locations.xml.in.h:5879
 
19320
+msgid "Menominee"
 
19321
+msgstr ""
 
19322
+
 
19323
+#. A city in Wisconsin in the United States
 
19324
+#: ../data/Locations.xml.in.h:5881
 
19325
+msgid "Menomonie"
 
19326
+msgstr ""
 
19327
+
 
19328
+#. A city in California in the United States
 
19329
+#: ../data/Locations.xml.in.h:5883
 
19330
+msgid "Merced"
 
19331
+msgstr ""
 
19332
+
 
19333
+#. A city in Nevada in the United States
 
19334
+#: ../data/Locations.xml.in.h:5885
 
19335
+msgid "Mercury"
 
19336
+msgstr ""
 
19337
+
 
19338
+#. A city in Connecticut in the United States
 
19339
+#: ../data/Locations.xml.in.h:5887
 
19340
+msgid "Meriden"
 
19341
+msgstr ""
 
19342
+
 
19343
+#. A city in Mississippi in the United States
 
19344
+#: ../data/Locations.xml.in.h:5889
 
19345
+msgid "Meridian"
 
19346
+msgstr ""
 
19347
+
 
19348
+#. A city in Wisconsin in the United States
 
19349
+#: ../data/Locations.xml.in.h:5891
 
19350
+msgid "Merrill"
 
19351
+msgstr ""
 
19352
+
 
19353
+#. A city in Turkey
 
19354
+#: ../data/Locations.xml.in.h:5893
 
19355
+msgid "Merzifon"
 
19356
+msgstr ""
 
19357
+
 
19358
+#. A city in Arizona in the United States
 
19359
+#: ../data/Locations.xml.in.h:5895
 
19360
+msgid "Mesa"
 
19361
+msgstr ""
 
19362
+
 
19363
+#. A city in Texas in the United States
 
19364
+#: ../data/Locations.xml.in.h:5897
 
19365
+msgid "Mesquite"
 
19366
+msgstr ""
 
19367
+
 
19368
+#. A city in Italy
 
19369
+#: ../data/Locations.xml.in.h:5899
 
19370
+msgid "Messina"
 
19371
+msgstr ""
 
19372
+
 
19373
+#. A city in Alaska in the United States
 
19374
+#: ../data/Locations.xml.in.h:5901
 
19375
+msgid "Metlakatla"
 
19376
+msgstr ""
 
19377
+
 
19378
+#. A city in Illinois in the United States
 
19379
+#: ../data/Locations.xml.in.h:5903
 
19380
+msgid "Metropolis"
 
19381
+msgstr ""
 
19382
+
 
19383
+#. A city in France
 
19384
+#: ../data/Locations.xml.in.h:5905
 
19385
+msgid "Metz"
 
19386
+msgstr ""
 
19387
+
 
19388
+#. A city in Baja California in Mexico
 
19389
+#: ../data/Locations.xml.in.h:5907
 
19390
+msgid "Mexicali"
 
19391
+msgstr ""
 
19392
+
 
19393
+#. MX - Mexico
 
19394
+#: ../data/Locations.xml.in.h:5909
 
19395
+msgid "Mexico"
 
19396
+msgstr ""
 
19397
+
 
19398
+#. The capital of Mexico.
 
19399
+#. "Mexico City" is the traditional English name.
 
19400
+#. The local name in Spanish is "México".
 
19401
+#.
 
19402
+#: ../data/Locations.xml.in.h:5914
 
19403
+msgid "Mexico City"
 
19404
+msgstr ""
 
19405
+
 
19406
+#. A city in Baden-Württemberg in Germany
 
19407
+#: ../data/Locations.xml.in.h:5916
 
19408
+msgid "Meßstetten"
 
19409
+msgstr ""
 
19410
+
 
19411
+#. A state/province/territory in United States
 
19412
+#: ../data/Locations.xml.in.h:5918
 
19413
+msgid "Michigan"
 
19414
+msgstr ""
 
19415
+
 
19416
+#. A state/province/territory in Mexico
 
19417
+#: ../data/Locations.xml.in.h:5920
 
19418
+msgid "Michoacán"
 
19419
+msgstr ""
 
19420
+
 
19421
+#. FM - Federated States of Micronesia
 
19422
+#: ../data/Locations.xml.in.h:5922
 
19423
+msgid "Micronesia, Federated States of"
 
19424
+msgstr ""
 
19425
+
 
19426
+#: ../data/Locations.xml.in.h:5923
 
19427
+msgid "Middle East"
 
19428
+msgstr ""
 
19429
+
 
19430
+#. A city in South and South West England in the United
 
19431
+#. Kingdom
 
19432
+#.
 
19433
+#: ../data/Locations.xml.in.h:5927
 
19434
+msgid "Middle Wallop"
 
19435
+msgstr ""
 
19436
+
 
19437
+#. A city in Kentucky in the United States
 
19438
+#: ../data/Locations.xml.in.h:5929
 
19439
+msgid "Middlesboro"
 
19440
+msgstr ""
 
19441
+
 
19442
+#. A city in Texas in the United States
 
19443
+#: ../data/Locations.xml.in.h:5931
 
19444
+msgid "Midland"
 
19445
+msgstr ""
 
19446
+
 
19447
+#. A state/province/territory in United Kingdom
 
19448
+#: ../data/Locations.xml.in.h:5933
 
19449
+msgid "Midlands"
 
19450
+msgstr ""
 
19451
+
 
19452
+#. A city in Texas in the United States
 
19453
+#: ../data/Locations.xml.in.h:5935
 
19454
+msgid "Midlothian"
 
19455
+msgstr ""
 
19456
+
 
19457
+#. The time zone for the Midway Atoll in the United States
 
19458
+#. Minor Outlying Islands, which uses the same time as
 
19459
+#. American Samoa (which is in fact also the same time zone
 
19460
+#. as (non-American) Samoa). The string is only used in
 
19461
+#. places where "US Minor Outlying Islands" is already
 
19462
+#. clear from context.
 
19463
+#.
 
19464
+#: ../data/Locations.xml.in.h:5943
 
19465
+msgid "Midway Atoll (Samoa Time)"
 
19466
+msgstr ""
 
19467
+
 
19468
+#. A city in Romania
 
19469
+#: ../data/Locations.xml.in.h:5945
 
19470
+msgid "Mihail Kogălniceanu"
 
19471
+msgstr ""
 
19472
+
 
19473
+#. A city in Japan
 
19474
+#: ../data/Locations.xml.in.h:5947
 
19475
+msgid "Mihonoseki"
 
19476
+msgstr ""
 
19477
+
 
19478
+#. A city in Finland
 
19479
+#: ../data/Locations.xml.in.h:5949
 
19480
+msgid "Mikkeli"
 
19481
+msgstr ""
 
19482
+
 
19483
+#. A city in Italy.
 
19484
+#. "Milan" is the traditional English name.
 
19485
+#. The local name in Italian is "Milano".
 
19486
+#.
 
19487
+#: ../data/Locations.xml.in.h:5954
 
19488
+msgid "Milan"
 
19489
+msgstr ""
 
19490
+
 
19491
+#. A city in East and South East England in the United
 
19492
+#. Kingdom
 
19493
+#.
 
19494
+#: ../data/Locations.xml.in.h:5958
 
19495
+msgid "Mildenhall"
 
19496
+msgstr ""
 
19497
+
 
19498
+#. A city in Montana in the United States
 
19499
+#: ../data/Locations.xml.in.h:5960
 
19500
+msgid "Miles City"
 
19501
+msgstr ""
 
19502
+
 
19503
+#. A city in Utah in the United States
 
19504
+#: ../data/Locations.xml.in.h:5962
 
19505
+msgid "Milford"
 
19506
+msgstr ""
 
19507
+
 
19508
+#. A city in Alberta in Canada
 
19509
+#: ../data/Locations.xml.in.h:5964
 
19510
+msgid "Milk River"
 
19511
+msgstr ""
 
19512
+
 
19513
+#. A city in Georgia in the United States
 
19514
+#: ../data/Locations.xml.in.h:5966
 
19515
+msgid "Milledgeville"
 
19516
+msgstr ""
 
19517
+
 
19518
+#. A city in Tennessee in the United States
 
19519
+#: ../data/Locations.xml.in.h:5968
 
19520
+msgid "Millington"
 
19521
+msgstr ""
 
19522
+
 
19523
+#. A city in Maine in the United States
 
19524
+#: ../data/Locations.xml.in.h:5970
 
19525
+msgid "Millinocket"
 
19526
+msgstr ""
 
19527
+
 
19528
+#. A city in New Jersey in the United States
 
19529
+#: ../data/Locations.xml.in.h:5972
 
19530
+msgid "Millville"
 
19531
+msgstr ""
 
19532
+
 
19533
+#. A city in Florida in the United States
 
19534
+#: ../data/Locations.xml.in.h:5974
 
19535
+msgid "Milton"
 
19536
+msgstr ""
 
19537
+
 
19538
+#. A city in Wisconsin in the United States
 
19539
+#: ../data/Locations.xml.in.h:5976
 
19540
+msgid "Milwaukee"
 
19541
+msgstr ""
 
19542
+
 
19543
+#. A city in Japan
 
19544
+#: ../data/Locations.xml.in.h:5978
 
19545
+msgid "Minami"
 
19546
+msgstr ""
 
19547
+
 
19548
+#. A state/province/territory in Brazil
 
19549
+#: ../data/Locations.xml.in.h:5980
 
19550
+msgid "Minas Gerais"
 
19551
+msgstr ""
 
19552
+
 
19553
+#. A city in Veracruz in Mexico
 
19554
+#: ../data/Locations.xml.in.h:5982
 
19555
+msgid "Minatitlán"
 
19556
+msgstr ""
 
19557
+
 
19558
+#. A city in Texas in the United States
 
19559
+#: ../data/Locations.xml.in.h:5984
 
19560
+msgid "Mineral Wells"
 
19561
+msgstr ""
 
19562
+
 
19563
+#. A city in Russia.
 
19564
+#. The local name in Russian is "Минеральные Воды".
 
19565
+#.
 
19566
+#: ../data/Locations.xml.in.h:5988
 
19567
+msgid "Mineral'nyye Vody"
 
19568
+msgstr ""
 
19569
+
 
19570
+#. A city in Minnesota in the United States
 
19571
+#: ../data/Locations.xml.in.h:5990
 
19572
+msgid "Minneapolis"
 
19573
+msgstr ""
 
19574
+
 
19575
+#. A state/province/territory in United States
 
19576
+#: ../data/Locations.xml.in.h:5992
 
19577
+msgid "Minnesota"
 
19578
+msgstr ""
 
19579
+
 
19580
+#. A city in North Dakota in the United States
 
19581
+#: ../data/Locations.xml.in.h:5994
 
19582
+msgid "Minot"
 
19583
+msgstr ""
 
19584
+
 
19585
+#. The capital of Belarus
 
19586
+#: ../data/Locations.xml.in.h:5996
 
19587
+msgid "Minsk"
 
19588
+msgstr ""
 
19589
+
 
19590
+#. A city in Malaysia
 
19591
+#: ../data/Locations.xml.in.h:5998
 
19592
+msgid "Miri"
 
19593
+msgstr ""
 
19594
+
 
19595
+#. A city in Russia.
 
19596
+#. The local name in Russian is "Мирный".
 
19597
+#.
 
19598
+#: ../data/Locations.xml.in.h:6002
 
19599
+msgid "Mirnyy"
 
19600
+msgstr ""
 
19601
+
 
19602
+#. A city in Japan
 
19603
+#: ../data/Locations.xml.in.h:6004
 
19604
+msgid "Misawa"
 
19605
+msgstr ""
 
19606
+
 
19607
+#. A state/province/territory in United States
 
19608
+#: ../data/Locations.xml.in.h:6006
 
19609
+msgid "Mississippi"
 
19610
+msgstr ""
 
19611
+
 
19612
+#. A city in Montana in the United States
 
19613
+#: ../data/Locations.xml.in.h:6008
 
19614
+msgid "Missoula"
 
19615
+msgstr ""
 
19616
+
 
19617
+#. A state/province/territory in United States
 
19618
+#: ../data/Locations.xml.in.h:6010
 
19619
+msgid "Missouri"
 
19620
+msgstr ""
 
19621
+
 
19622
+#. A city in South Dakota in the United States
 
19623
+#: ../data/Locations.xml.in.h:6012
 
19624
+msgid "Mitchell"
 
19625
+msgstr ""
 
19626
+
 
19627
+#. A city in Japan
 
19628
+#: ../data/Locations.xml.in.h:6014
 
19629
+msgid "Mito"
 
19630
+msgstr ""
 
19631
+
 
19632
+#. A city in Japan
 
19633
+#: ../data/Locations.xml.in.h:6016
 
19634
+msgid "Miyazaki"
 
19635
+msgstr ""
 
19636
+
 
19637
+#. A city in Utah in the United States
 
19638
+#: ../data/Locations.xml.in.h:6018
 
19639
+msgid "Moab"
 
19640
+msgstr ""
 
19641
+
 
19642
+#. A city in Alabama in the United States
 
19643
+#: ../data/Locations.xml.in.h:6020
 
19644
+msgid "Mobile"
 
19645
+msgstr ""
 
19646
+
 
19647
+#. A city in South Dakota in the United States
 
19648
+#: ../data/Locations.xml.in.h:6022
 
19649
+msgid "Mobridge"
 
19650
+msgstr ""
 
19651
+
 
19652
+#. A city in Botswana
 
19653
+#: ../data/Locations.xml.in.h:6024
 
19654
+msgid "Mochudi"
 
19655
+msgstr ""
 
19656
+
 
19657
+#. A city in California in the United States
 
19658
+#: ../data/Locations.xml.in.h:6026
 
19659
+msgid "Modesto"
 
19660
+msgstr ""
 
19661
+
 
19662
+#. A city in Ukraine
 
19663
+#: ../data/Locations.xml.in.h:6028
 
19664
+msgid "Mokroye"
 
19665
+msgstr ""
 
19666
+
 
19667
+#. A city in Norway
 
19668
+#: ../data/Locations.xml.in.h:6030
 
19669
+msgid "Molde"
 
19670
+msgstr ""
 
19671
+
 
19672
+#. MD - Moldova
 
19673
+#: ../data/Locations.xml.in.h:6032
 
19674
+msgid "Moldova"
 
19675
+msgstr ""
 
19676
+
 
19677
+#. A city in Illinois in the United States
 
19678
+#: ../data/Locations.xml.in.h:6034
 
19679
+msgid "Moline"
 
19680
+msgstr ""
 
19681
+
 
19682
+#. A city in Italy
 
19683
+#: ../data/Locations.xml.in.h:6036
 
19684
+msgid "Molino di Ancona"
 
19685
+msgstr ""
 
19686
+
 
19687
+#. A city in Kenya
 
19688
+#: ../data/Locations.xml.in.h:6038
 
19689
+msgid "Mombasa"
 
19690
+msgstr ""
 
19691
+
 
19692
+#. A city in Japan
 
19693
+#: ../data/Locations.xml.in.h:6040
 
19694
+msgid "Mombetsu"
 
19695
+msgstr ""
 
19696
+
 
19697
+#. A city in Tunisia
 
19698
+#: ../data/Locations.xml.in.h:6042
 
19699
+msgid "Monastir"
 
19700
+msgstr ""
 
19701
+
 
19702
+#. A city in Coahuila in Mexico
 
19703
+#: ../data/Locations.xml.in.h:6044
 
19704
+msgid "Monclova"
 
19705
+msgstr ""
 
19706
+
 
19707
+#. A city in New Brunswick in Canada
 
19708
+#: ../data/Locations.xml.in.h:6046
 
19709
+msgid "Moncton"
 
19710
+msgstr ""
 
19711
+
 
19712
+#. MN - Mongolia
 
19713
+#: ../data/Locations.xml.in.h:6048
 
19714
+msgid "Mongolia"
 
19715
+msgstr ""
 
19716
+
 
19717
+#. A city in Quebec in Canada
 
19718
+#: ../data/Locations.xml.in.h:6050
 
19719
+msgid "Mont-Apica"
 
19720
+msgstr ""
 
19721
+
 
19722
+#. A city in Quebec in Canada
 
19723
+#: ../data/Locations.xml.in.h:6052
 
19724
+msgid "Mont-Joli"
 
19725
+msgstr ""
 
19726
+
 
19727
+#. A city in France
 
19728
+#: ../data/Locations.xml.in.h:6054
 
19729
+msgid "Mont-de-Marsan"
 
19730
+msgstr ""
 
19731
+
 
19732
+#. A city in California in the United States
 
19733
+#: ../data/Locations.xml.in.h:6056
 
19734
+msgid "Montague"
 
19735
+msgstr ""
 
19736
+
 
19737
+#. A state/province/territory in United States
 
19738
+#: ../data/Locations.xml.in.h:6058
 
19739
+msgid "Montana"
 
19740
+msgstr ""
 
19741
+
 
19742
+#. A city in New York in the United States
 
19743
+#: ../data/Locations.xml.in.h:6060
 
19744
+msgid "Montauk"
 
19745
+msgstr ""
 
19746
+
 
19747
+#. A city in Portugal
 
19748
+#: ../data/Locations.xml.in.h:6062
 
19749
+msgid "Monte Real"
 
19750
+msgstr ""
 
19751
+
 
19752
+#. A city in Jamaica
 
19753
+#: ../data/Locations.xml.in.h:6064
 
19754
+msgid "Montego Bay"
 
19755
+msgstr ""
 
19756
+
 
19757
+#. ME - Montenegro
 
19758
+#: ../data/Locations.xml.in.h:6066
 
19759
+msgid "Montenegro"
 
19760
+msgstr ""
 
19761
+
 
19762
+#. A city in California in the United States
 
19763
+#: ../data/Locations.xml.in.h:6068
 
19764
+msgid "Monterey"
 
19765
+msgstr ""
 
19766
+
 
19767
+#. A city in Colombia
 
19768
+#: ../data/Locations.xml.in.h:6070
 
19769
+msgid "Monteria"
 
19770
+msgstr ""
 
19771
+
 
19772
+#. A city in Nuevo León in Mexico
 
19773
+#: ../data/Locations.xml.in.h:6072
 
19774
+msgid "Monterrey"
 
19775
+msgstr ""
 
19776
+
 
19777
+#. A city in Minas Gerais in Brazil
 
19778
+#: ../data/Locations.xml.in.h:6074
 
19779
+msgid "Montes Claros"
 
19780
+msgstr ""
 
19781
+
 
19782
+#. A city in France
 
19783
+#: ../data/Locations.xml.in.h:6076
 
19784
+msgid "Montgauch"
 
19785
+msgstr ""
 
19786
+
 
19787
+#. A city in Portugal
 
19788
+#: ../data/Locations.xml.in.h:6078
 
19789
+msgid "Montijo"
 
19790
+msgstr ""
 
19791
+
 
19792
+#. A city in Quebec in Canada
 
19793
+#: ../data/Locations.xml.in.h:6080
 
19794
+msgid "Montmagny"
 
19795
+msgstr ""
 
19796
+
 
19797
+#. A city in France
 
19798
+#: ../data/Locations.xml.in.h:6082
 
19799
+msgid "Montpellier"
 
19800
+msgstr ""
 
19801
+
 
19802
+#. A city in Quebec in Canada.
 
19803
+#. The local name in French is "Montréal".
 
19804
+#.
 
19805
+#: ../data/Locations.xml.in.h:6086
 
19806
+msgid "Montreal"
 
19807
+msgstr ""
 
19808
+
 
19809
+#. A city in Colorado in the United States
 
19810
+#: ../data/Locations.xml.in.h:6088
 
19811
+msgid "Montrose"
 
19812
+msgstr ""
 
19813
+
 
19814
+#. MS - Montserrat, a British territory in the Caribbean.
 
19815
+#: ../data/Locations.xml.in.h:6090
 
19816
+msgid "Montserrat"
 
19817
+msgstr ""
 
19818
+
 
19819
+#. A city in France
 
19820
+#: ../data/Locations.xml.in.h:6092
 
19821
+msgid "Montélimar"
 
19822
+msgstr ""
 
19823
+
 
19824
+#. A city in Greece
 
19825
+#: ../data/Locations.xml.in.h:6094
 
19826
+msgid "Monólithos"
 
19827
+msgstr ""
 
19828
+
 
19829
+#. A city in Minnesota in the United States
 
19830
+#: ../data/Locations.xml.in.h:6096
 
19831
+msgid "Moorhead"
 
19832
+msgstr ""
 
19833
+
 
19834
+#. A city in Minnesota in the United States
 
19835
+#: ../data/Locations.xml.in.h:6098
 
19836
+msgid "Moose Lake"
 
19837
+msgstr ""
 
19838
+
 
19839
+#. A city in Ontario in Canada
 
19840
+#: ../data/Locations.xml.in.h:6100
 
19841
+msgid "Moosonee"
 
19842
+msgstr ""
 
19843
+
 
19844
+#. A city in Minnesota in the United States
 
19845
+#: ../data/Locations.xml.in.h:6102
 
19846
+msgid "Mora"
 
19847
+msgstr ""
 
19848
+
 
19849
+#. A city in Manitoba in Canada
 
19850
+#: ../data/Locations.xml.in.h:6104
 
19851
+msgid "Morden"
 
19852
+msgstr ""
 
19853
+
 
19854
+#. A city in Michoacán in Mexico
 
19855
+#: ../data/Locations.xml.in.h:6106
 
19856
+msgid "Morelia"
 
19857
+msgstr ""
 
19858
+
 
19859
+#. A state/province/territory in Mexico
 
19860
+#: ../data/Locations.xml.in.h:6108
 
19861
+msgid "Morelos"
 
19862
+msgstr ""
 
19863
+
 
19864
+#. A city in West Virginia in the United States
 
19865
+#: ../data/Locations.xml.in.h:6110
 
19866
+msgid "Morgantown"
 
19867
+msgstr ""
 
19868
+
 
19869
+#. A city in Yemen
 
19870
+#: ../data/Locations.xml.in.h:6112
 
19871
+msgid "Mori"
 
19872
+msgstr ""
 
19873
+
 
19874
+#. A city in New Mexico in the United States
 
19875
+#: ../data/Locations.xml.in.h:6114
 
19876
+msgid "Moriarty"
 
19877
+msgstr ""
 
19878
+
 
19879
+#. MA - Morocco
 
19880
+#: ../data/Locations.xml.in.h:6116
 
19881
+msgid "Morocco"
 
19882
+msgstr ""
 
19883
+
 
19884
+#. A city in Venezuela
 
19885
+#: ../data/Locations.xml.in.h:6118
 
19886
+msgid "Morocure"
 
19887
+msgstr ""
 
19888
+
 
19889
+#. A city in Tanzania
 
19890
+#: ../data/Locations.xml.in.h:6120
 
19891
+msgid "Morogoro"
 
19892
+msgstr ""
 
19893
+
 
19894
+#. The capital of Comoros
 
19895
+#: ../data/Locations.xml.in.h:6122
 
19896
+msgid "Moroni"
 
19897
+msgstr ""
 
19898
+
 
19899
+#. A city in New Jersey in the United States
 
19900
+#: ../data/Locations.xml.in.h:6124
 
19901
+msgid "Morristown"
 
19902
+msgstr ""
 
19903
+
 
19904
+#. A city in Vermont in the United States
 
19905
+#: ../data/Locations.xml.in.h:6126
 
19906
+msgid "Morrisville"
 
19907
+msgstr ""
 
19908
+
 
19909
+#. A city in Spain
 
19910
+#: ../data/Locations.xml.in.h:6128
 
19911
+msgid "Morón"
 
19912
+msgstr ""
 
19913
+
 
19914
+#. A Russian time zone, used in most of the European part
 
19915
+#. of Russia, including Moscow. The Russian name is
 
19916
+#. "Московское время". This string is only used in places
 
19917
+#. where "Russia" is already clear from context.
 
19918
+#.
 
19919
+#: ../data/Locations.xml.in.h:6134
 
19920
+msgid "Moscow Time"
 
19921
+msgstr ""
 
19922
+
 
19923
+#. A city in Washington in the United States
 
19924
+#: ../data/Locations.xml.in.h:6136
 
19925
+msgid "Moses Lake"
 
19926
+msgstr ""
 
19927
+
 
19928
+#. A city in Tanzania
 
19929
+#: ../data/Locations.xml.in.h:6138
 
19930
+msgid "Moshi"
 
19931
+msgstr ""
 
19932
+
 
19933
+#. A city in Wisconsin in the United States
 
19934
+#: ../data/Locations.xml.in.h:6140
 
19935
+msgid "Mosinee"
 
19936
+msgstr ""
 
19937
+
 
19938
+#. A city in Norway
 
19939
+#: ../data/Locations.xml.in.h:6142
 
19940
+msgid "Mosjøen"
 
19941
+msgstr ""
 
19942
+
 
19943
+#. A city in Scotland in the United Kingdom
 
19944
+#: ../data/Locations.xml.in.h:6144
 
19945
+msgid "Mossbank"
 
19946
+msgstr ""
 
19947
+
 
19948
+#. A city in Rio Grande do Norte in Brazil
 
19949
+#: ../data/Locations.xml.in.h:6146
 
19950
+msgid "Mossoró"
 
19951
+msgstr ""
 
19952
+
 
19953
+#. A city in Bosnia and Herzegovina
 
19954
+#: ../data/Locations.xml.in.h:6148
 
19955
+msgid "Mostar"
 
19956
+msgstr ""
 
19957
+
 
19958
+#. A city in Georgia in the United States
 
19959
+#: ../data/Locations.xml.in.h:6150
 
19960
+msgid "Moultrie"
 
19961
+msgstr ""
 
19962
+
 
19963
+#. A city in Chad
 
19964
+#: ../data/Locations.xml.in.h:6152
 
19965
+msgid "Moundou"
 
19966
+msgstr ""
 
19967
+
 
19968
+#. A city in North Carolina in the United States
 
19969
+#: ../data/Locations.xml.in.h:6154
 
19970
+msgid "Mount Airy"
 
19971
+msgstr ""
 
19972
+
 
19973
+#. A city in Illinois in the United States
 
19974
+#: ../data/Locations.xml.in.h:6156
 
19975
+msgid "Mount Carmel"
 
19976
+msgstr ""
 
19977
+
 
19978
+#. A city in Ontario in Canada
 
19979
+#: ../data/Locations.xml.in.h:6158
 
19980
+msgid "Mount Forest"
 
19981
+msgstr ""
 
19982
+
 
19983
+#. A city in New Jersey in the United States
 
19984
+#: ../data/Locations.xml.in.h:6160
 
19985
+msgid "Mount Holly"
 
19986
+msgstr ""
 
19987
+
 
19988
+#. A city in Arkansas in the United States
 
19989
+#: ../data/Locations.xml.in.h:6162
 
19990
+msgid "Mount Ida"
 
19991
+msgstr ""
 
19992
+
 
19993
+#. A city in Queensland in Australia
 
19994
+#: ../data/Locations.xml.in.h:6164
 
19995
+msgid "Mount Isa"
 
19996
+msgstr ""
 
19997
+
 
19998
+#. A city in Newfoundland and Labrador in Canada
 
19999
+#: ../data/Locations.xml.in.h:6166
 
20000
+msgid "Mount Pearl Park"
 
20001
+msgstr ""
 
20002
+
 
20003
+#. A city in Pennsylvania in the United States
 
20004
+#: ../data/Locations.xml.in.h:6168
 
20005
+msgid "Mount Pocono"
 
20006
+msgstr ""
 
20007
+
 
20008
+#. A city in California in the United States
 
20009
+#: ../data/Locations.xml.in.h:6170
 
20010
+msgid "Mount Shasta"
 
20011
+msgstr ""
 
20012
+
 
20013
+#. A city in Illinois in the United States
 
20014
+#: ../data/Locations.xml.in.h:6172
 
20015
+msgid "Mount Vernon"
 
20016
+msgstr ""
 
20017
+
 
20018
+#. A city in California in the United States
 
20019
+#: ../data/Locations.xml.in.h:6174
 
20020
+msgid "Mount Wilson"
 
20021
+msgstr ""
 
20022
+
 
20023
+#. The time zone used in the central-west part of North
 
20024
+#. America (ie, the Rocky Mountains). In Mexico it is
 
20025
+#. called "Tiempo de la Montaña", and in French-speaking
 
20026
+#. parts of Canada it is called "Heure des Rocheuses". The
 
20027
+#. string is only used in places where "US", "Canada" or
 
20028
+#. "Mexico" is already clear from the context.
 
20029
+#.
 
20030
+#: ../data/Locations.xml.in.h:6182
 
20031
+msgid "Mountain Time"
 
20032
+msgstr ""
 
20033
+
 
20034
+#. This represents the time zone in the US state of
 
20035
+#. Arizona, which is part of the "Mountain Time" zone, but
 
20036
+#. does not observe Daylight Saving Time with the rest of
 
20037
+#. the zone. The string is only used in places where
 
20038
+#. "United States" is already clear from context.
 
20039
+#.
 
20040
+#: ../data/Locations.xml.in.h:6189
 
20041
+msgid "Mountain Time, no DST (Arizona)"
 
20042
+msgstr ""
 
20043
+
 
20044
+#. This represents the time zone in the northeastern part
 
20045
+#. of the Canadian province of British Columbia (BC), which
 
20046
+#. is part of the "Mountain Time" zone, but does not
 
20047
+#. observe Daylight Saving Time with the rest of the zone.
 
20048
+#.
 
20049
+#: ../data/Locations.xml.in.h:6195
 
20050
+msgid "Mountain Time, no DST (Northeast BC)"
 
20051
+msgstr ""
 
20052
+
 
20053
+#. A city in California in the United States
 
20054
+#: ../data/Locations.xml.in.h:6197
 
20055
+msgid "Mountain View"
 
20056
+msgstr ""
 
20057
+
 
20058
+#. MZ - Mozambique
 
20059
+#: ../data/Locations.xml.in.h:6199
 
20060
+msgid "Mozambique"
 
20061
+msgstr ""
 
20062
+
 
20063
+#. A city in Tanzania
 
20064
+#: ../data/Locations.xml.in.h:6201
 
20065
+msgid "Mtwara"
 
20066
+msgstr ""
 
20067
+
 
20068
+#. A city in Oman
 
20069
+#: ../data/Locations.xml.in.h:6203
 
20070
+msgid "Mu'askar al Murtafi'ah"
 
20071
+msgstr ""
 
20072
+
 
20073
+#. A city in Kentucky in the United States
 
20074
+#: ../data/Locations.xml.in.h:6205
 
20075
+msgid "Muldraugh"
 
20076
+msgstr ""
 
20077
+
 
20078
+#. A city in France
 
20079
+#: ../data/Locations.xml.in.h:6207
 
20080
+msgid "Mulhouse"
 
20081
+msgstr ""
 
20082
+
 
20083
+#. A city in Idaho in the United States
 
20084
+#: ../data/Locations.xml.in.h:6209
 
20085
+msgid "Mullan"
 
20086
+msgstr ""
 
20087
+
 
20088
+#. A city in India.
 
20089
+#. "Bombay" is the traditional English name.
 
20090
+#. The local name in Marathi is "Mumbai /  मुंबई".
 
20091
+#.
 
20092
+#: ../data/Locations.xml.in.h:6214
 
20093
+msgid "Mumbai"
 
20094
+msgstr ""
 
20095
+
 
20096
+#. A city in Indiana in the United States
 
20097
+#: ../data/Locations.xml.in.h:6216
 
20098
+msgid "Muncie"
 
20099
+msgstr ""
 
20100
+
 
20101
+#. A city in Bavaria in Germany.
 
20102
+#. "Munich" is the traditional English name.
 
20103
+#. The local name is "München".
 
20104
+#.
 
20105
+#: ../data/Locations.xml.in.h:6221
 
20106
+msgid "Munich"
 
20107
+msgstr ""
 
20108
+
 
20109
+#. A city in Michigan in the United States
 
20110
+#: ../data/Locations.xml.in.h:6223
 
20111
+msgid "Munising"
 
20112
+msgstr ""
 
20113
+
 
20114
+#. A city in Russia.
 
20115
+#. The local name in Russian is "Мурманск".
 
20116
+#.
 
20117
+#: ../data/Locations.xml.in.h:6227
 
20118
+msgid "Murmansk"
 
20119
+msgstr ""
 
20120
+
 
20121
+#. The capital of Oman.
 
20122
+#. "Muscat" is the traditional English name.
 
20123
+#. The local name in Arabic is "Masqat".
 
20124
+#.
 
20125
+#: ../data/Locations.xml.in.h:6232
 
20126
+msgid "Muscat"
 
20127
+msgstr ""
 
20128
+
 
20129
+#. A city in Iowa in the United States
 
20130
+#: ../data/Locations.xml.in.h:6234
 
20131
+msgid "Muscatine"
 
20132
+msgstr ""
 
20133
+
 
20134
+#. A city in Alabama in the United States
 
20135
+#: ../data/Locations.xml.in.h:6236
 
20136
+msgid "Muscle Shoals"
 
20137
+msgstr ""
 
20138
+
 
20139
+#. A city in Michigan in the United States
 
20140
+#: ../data/Locations.xml.in.h:6238
 
20141
+msgid "Muskegon"
 
20142
+msgstr ""
 
20143
+
 
20144
+#. A city in Oklahoma in the United States
 
20145
+#: ../data/Locations.xml.in.h:6240
 
20146
+msgid "Muskogee"
 
20147
+msgstr ""
 
20148
+
 
20149
+#. A city in Ontario in Canada
 
20150
+#: ../data/Locations.xml.in.h:6242
 
20151
+msgid "Muskoka Falls"
 
20152
+msgstr ""
 
20153
+
 
20154
+#. A city in Tanzania
 
20155
+#: ../data/Locations.xml.in.h:6244
 
20156
+msgid "Musoma"
 
20157
+msgstr ""
 
20158
+
 
20159
+#. A city in Tanzania
 
20160
+#: ../data/Locations.xml.in.h:6246
 
20161
+msgid "Mwanza"
 
20162
+msgstr ""
 
20163
+
 
20164
+#. MM - Myanmar (also known as Burma, but "Myanmar" is
 
20165
+#. currently the official ISO 3166 short English name, and gets
 
20166
+#. more Google hits in English)
 
20167
+#.
 
20168
+#: ../data/Locations.xml.in.h:6251
 
20169
+msgid "Myanmar"
 
20170
+msgstr ""
 
20171
+
 
20172
+#. A city in Ukraine
 
20173
+#: ../data/Locations.xml.in.h:6253
 
20174
+msgid "Mykolayiv"
 
20175
+msgstr ""
 
20176
+
 
20177
+#. A city in South Carolina in the United States
 
20178
+#: ../data/Locations.xml.in.h:6255
 
20179
+msgid "Myrtle Beach"
 
20180
+msgstr ""
 
20181
+
 
20182
+#. A city in Greece
 
20183
+#: ../data/Locations.xml.in.h:6257
 
20184
+msgid "Mytilíni"
 
20185
+msgstr ""
 
20186
+
 
20187
+#. A city in Spain
 
20188
+#: ../data/Locations.xml.in.h:6259
 
20189
+msgid "Málaga"
 
20190
+msgstr ""
 
20191
+
 
20192
+#. A city in France
 
20193
+#: ../data/Locations.xml.in.h:6261
 
20194
+msgid "Mâcon"
 
20195
+msgstr ""
 
20196
+
 
20197
+#. A city in France
 
20198
+#: ../data/Locations.xml.in.h:6263
 
20199
+msgid "Méné Guen"
 
20200
+msgstr ""
 
20201
+
 
20202
+#. A state/province/territory in Mexico
 
20203
+#: ../data/Locations.xml.in.h:6265
 
20204
+msgid "México"
 
20205
+msgstr ""
 
20206
+
 
20207
+#. A city in North Rhine-Westphalia in Germany
 
20208
+#: ../data/Locations.xml.in.h:6267
 
20209
+msgid "Mönchengladbach"
 
20210
+msgstr ""
 
20211
+
 
20212
+#. A city in North Rhine-Westphalia in Germany
 
20213
+#: ../data/Locations.xml.in.h:6269
 
20214
+msgid "Münster"
 
20215
+msgstr ""
 
20216
+
 
20217
+#. A city in Greece.
 
20218
+#. The name is also written "Μύκονος".
 
20219
+#.
 
20220
+#: ../data/Locations.xml.in.h:6273
 
20221
+msgid "Mýkonos"
 
20222
+msgstr ""
 
20223
+
 
20224
+#. The capital of Chad
 
20225
+#: ../data/Locations.xml.in.h:6275
 
20226
+msgid "N'Djamena"
 
20227
+msgstr ""
 
20228
+
 
20229
+#. A city in Alaska in the United States
 
20230
+#: ../data/Locations.xml.in.h:6277
 
20231
+msgid "Nabesna"
 
20232
+msgstr ""
 
20233
+
 
20234
+#. A city in Texas in the United States
 
20235
+#: ../data/Locations.xml.in.h:6279
 
20236
+msgid "Nacogdoches"
 
20237
+msgstr ""
 
20238
+
 
20239
+#. A city in Morocco
 
20240
+#: ../data/Locations.xml.in.h:6281
 
20241
+msgid "Nador"
 
20242
+msgstr ""
 
20243
+
 
20244
+#. A city in Japan
 
20245
+#: ../data/Locations.xml.in.h:6283
 
20246
+msgid "Nagasaki"
 
20247
+msgstr ""
 
20248
+
 
20249
+#. A city in Japan
 
20250
+#: ../data/Locations.xml.in.h:6285
 
20251
+msgid "Nagoya"
 
20252
+msgstr ""
 
20253
+
 
20254
+#. A city in India
 
20255
+#: ../data/Locations.xml.in.h:6287
 
20256
+msgid "Nagpur"
 
20257
+msgstr ""
 
20258
+
 
20259
+#. A city in Japan
 
20260
+#: ../data/Locations.xml.in.h:6289
 
20261
+msgid "Naha"
 
20262
+msgstr ""
 
20263
+
 
20264
+#. A city in Northwest Territories in Canada
 
20265
+#: ../data/Locations.xml.in.h:6291
 
20266
+msgid "Nahanni Butte"
 
20267
+msgstr ""
 
20268
+
 
20269
+#. A city in Newfoundland and Labrador in Canada
 
20270
+#: ../data/Locations.xml.in.h:6293
 
20271
+msgid "Nain"
 
20272
+msgstr ""
 
20273
+
 
20274
+#. The capital of Kenya
 
20275
+#: ../data/Locations.xml.in.h:6295
 
20276
+msgid "Nairobi"
 
20277
+msgstr ""
 
20278
+
 
20279
+#. A city in Saudi Arabia
 
20280
+#: ../data/Locations.xml.in.h:6297
 
20281
+msgid "Najran"
 
20282
+msgstr ""
 
20283
+
 
20284
+#. A city in Japan
 
20285
+#: ../data/Locations.xml.in.h:6299
 
20286
+msgid "Naka-shibetsu"
 
20287
+msgstr ""
 
20288
+
 
20289
+#. A city in British Columbia in Canada
 
20290
+#: ../data/Locations.xml.in.h:6301
 
20291
+msgid "Nakusp"
 
20292
+msgstr ""
 
20293
+
 
20294
+#. A city in Russia.
 
20295
+#. The local name in Russian is "Нальчик".
 
20296
+#.
 
20297
+#: ../data/Locations.xml.in.h:6305
 
20298
+msgid "Nal'chik"
 
20299
+msgstr ""
 
20300
+
 
20301
+#. NA - Namibia
 
20302
+#: ../data/Locations.xml.in.h:6307
 
20303
+msgid "Namibia"
 
20304
+msgstr ""
 
20305
+
 
20306
+#. A city in Mozambique
 
20307
+#: ../data/Locations.xml.in.h:6309
 
20308
+msgid "Nampula"
 
20309
+msgstr ""
 
20310
+
 
20311
+#. A city in Norway
 
20312
+#: ../data/Locations.xml.in.h:6311
 
20313
+msgid "Namsos"
 
20314
+msgstr ""
 
20315
+
 
20316
+#. A state/province/territory in Belgium
 
20317
+#: ../data/Locations.xml.in.h:6313
 
20318
+msgid "Namur"
 
20319
+msgstr ""
 
20320
+
 
20321
+#. A city in Thailand
 
20322
+#: ../data/Locations.xml.in.h:6315
 
20323
+msgid "Nan"
 
20324
+msgstr ""
 
20325
+
 
20326
+#. A city in British Columbia in Canada
 
20327
+#: ../data/Locations.xml.in.h:6317
 
20328
+msgid "Nanaimo"
 
20329
+msgstr ""
 
20330
+
 
20331
+#. A city in France
 
20332
+#: ../data/Locations.xml.in.h:6319
 
20333
+msgid "Nancy"
 
20334
+msgstr ""
 
20335
+
 
20336
+#. A city in Jiangsu in China.
 
20337
+#. The name is also written "南京".
 
20338
+#.
 
20339
+#: ../data/Locations.xml.in.h:6323
 
20340
+msgid "Nanjing"
 
20341
+msgstr ""
 
20342
+
 
20343
+#. A city in Guangxi in China.
 
20344
+#. The name is also written "南宁".
 
20345
+#.
 
20346
+#: ../data/Locations.xml.in.h:6327
 
20347
+msgid "Nanning"
 
20348
+msgstr ""
 
20349
+
 
20350
+#. A city in British Columbia in Canada
 
20351
+#: ../data/Locations.xml.in.h:6329
 
20352
+msgid "Nanoose Bay"
 
20353
+msgstr ""
 
20354
+
 
20355
+#. A city in France
 
20356
+#: ../data/Locations.xml.in.h:6331
 
20357
+msgid "Nantes"
 
20358
+msgstr ""
 
20359
+
 
20360
+#. A city in Ontario in Canada
 
20361
+#: ../data/Locations.xml.in.h:6333
 
20362
+msgid "Nanticoke"
 
20363
+msgstr ""
 
20364
+
 
20365
+#. A city in Massachusetts in the United States
 
20366
+#: ../data/Locations.xml.in.h:6335
 
20367
+msgid "Nantucket"
 
20368
+msgstr ""
 
20369
+
 
20370
+#. A city in California in the United States
 
20371
+#: ../data/Locations.xml.in.h:6337
 
20372
+msgid "Napa"
 
20373
+msgstr ""
 
20374
+
 
20375
+#. A city in Illinois in the United States
 
20376
+#: ../data/Locations.xml.in.h:6339
 
20377
+msgid "Naperville"
 
20378
+msgstr ""
 
20379
+
 
20380
+#. A city in Greenland
 
20381
+#: ../data/Locations.xml.in.h:6341
 
20382
+msgid "Narsarsuaq"
 
20383
+msgstr ""
 
20384
+
 
20385
+#. A city in Norway
 
20386
+#: ../data/Locations.xml.in.h:6343
 
20387
+msgid "Narvik"
 
20388
+msgstr ""
 
20389
+
 
20390
+#. A city in New Hampshire in the United States
 
20391
+#: ../data/Locations.xml.in.h:6345
 
20392
+msgid "Nashua"
 
20393
+msgstr ""
 
20394
+
 
20395
+#. A city in Tennessee in the United States
 
20396
+#: ../data/Locations.xml.in.h:6347
 
20397
+msgid "Nashville"
 
20398
+msgstr ""
 
20399
+
 
20400
+#. The capital of the Bahamas
 
20401
+#: ../data/Locations.xml.in.h:6349
 
20402
+msgid "Nassau"
 
20403
+msgstr ""
 
20404
+
 
20405
+#. A city in Quebec in Canada
 
20406
+#: ../data/Locations.xml.in.h:6351
 
20407
+msgid "Natashquan"
 
20408
+msgstr ""
 
20409
+
 
20410
+#. A city in Mississippi in the United States
 
20411
+#: ../data/Locations.xml.in.h:6353
 
20412
+msgid "Natchez"
 
20413
+msgstr ""
 
20414
+
 
20415
+#. A city in Louisiana in the United States
 
20416
+#: ../data/Locations.xml.in.h:6355
 
20417
+msgid "Natchitoches"
 
20418
+msgstr ""
 
20419
+
 
20420
+#. NR - Nauru
 
20421
+#: ../data/Locations.xml.in.h:6357
 
20422
+msgid "Nauru"
 
20423
+msgstr ""
 
20424
+
 
20425
+#. A city in Pakistan
 
20426
+#: ../data/Locations.xml.in.h:6359
 
20427
+msgid "Nawabshah"
 
20428
+msgstr ""
 
20429
+
 
20430
+#. A state/province/territory in Mexico
 
20431
+#: ../data/Locations.xml.in.h:6361
 
20432
+msgid "Nayarit"
 
20433
+msgstr ""
 
20434
+
 
20435
+#. A city in Zambia
 
20436
+#: ../data/Locations.xml.in.h:6363
 
20437
+msgid "Ndola"
 
20438
+msgstr ""
 
20439
+
 
20440
+#. A state/province/territory in United States
 
20441
+#: ../data/Locations.xml.in.h:6365
 
20442
+msgid "Nebraska"
 
20443
+msgstr ""
 
20444
+
 
20445
+#. A city in Nebraska in the United States
 
20446
+#: ../data/Locations.xml.in.h:6367
 
20447
+msgid "Nebraska City"
 
20448
+msgstr ""
 
20449
+
 
20450
+#. A city in Newfoundland and Labrador in Canada
 
20451
+#: ../data/Locations.xml.in.h:6369
 
20452
+msgid "Neddy Harbour"
 
20453
+msgstr ""
 
20454
+
 
20455
+#. A city in California in the United States
 
20456
+#: ../data/Locations.xml.in.h:6371
 
20457
+msgid "Needles"
 
20458
+msgstr ""
 
20459
+
 
20460
+#. A city in British Columbia in Canada
 
20461
+#: ../data/Locations.xml.in.h:6373
 
20462
+msgid "Nelson"
 
20463
+msgstr ""
 
20464
+
 
20465
+#. A city in Alaska in the United States
 
20466
+#: ../data/Locations.xml.in.h:6375
 
20467
+msgid "Nenana"
 
20468
+msgstr ""
 
20469
+
 
20470
+#. NP - Nepal
 
20471
+#: ../data/Locations.xml.in.h:6377
 
20472
+msgid "Nepal"
 
20473
+msgstr ""
 
20474
+
 
20475
+#. NL - Netherlands
 
20476
+#: ../data/Locations.xml.in.h:6379
 
20477
+msgid "Netherlands"
 
20478
+msgstr ""
 
20479
+
 
20480
+#. AN - Netherlands Antilles, a group of Caribbean islands; one
 
20481
+#. of the three constituent countries of the Kingdom of the
 
20482
+#. Netherlands.
 
20483
+#.
 
20484
+#: ../data/Locations.xml.in.h:6384
 
20485
+msgid "Netherlands Antilles"
 
20486
+msgstr ""
 
20487
+
 
20488
+#. A city in Bavaria in Germany.
 
20489
+#. One of several cities in Germany called "Neuburg".
 
20490
+#.
 
20491
+#: ../data/Locations.xml.in.h:6388
 
20492
+msgid "Neuburg an der Donau"
 
20493
+msgstr ""
 
20494
+
 
20495
+#. A city in Switzerland
 
20496
+#: ../data/Locations.xml.in.h:6390
 
20497
+msgid "Neuchâtel"
 
20498
+msgstr ""
 
20499
+
 
20500
+#. A city in Baden-Württemberg in Germany
 
20501
+#: ../data/Locations.xml.in.h:6392
 
20502
+msgid "Neuostheim"
 
20503
+msgstr ""
 
20504
+
 
20505
+#. A city in Argentina
 
20506
+#: ../data/Locations.xml.in.h:6394
 
20507
+msgid "Neuquén"
 
20508
+msgstr ""
 
20509
+
 
20510
+#. A state/province/territory in United States
 
20511
+#: ../data/Locations.xml.in.h:6396
 
20512
+msgid "Nevada"
 
20513
+msgstr ""
 
20514
+
 
20515
+#. A city in France
 
20516
+#: ../data/Locations.xml.in.h:6398
 
20517
+msgid "Nevers"
 
20518
+msgstr ""
 
20519
+
 
20520
+#. A city in Turkey
 
20521
+#: ../data/Locations.xml.in.h:6400
 
20522
+msgid "Nevsehir"
 
20523
+msgstr ""
 
20524
+
 
20525
+#. A city in Massachusetts in the United States
 
20526
+#: ../data/Locations.xml.in.h:6402
 
20527
+msgid "New Bedford"
 
20528
+msgstr ""
 
20529
+
 
20530
+#. A city in North Carolina in the United States
 
20531
+#: ../data/Locations.xml.in.h:6404
 
20532
+msgid "New Bern"
 
20533
+msgstr ""
 
20534
+
 
20535
+#. A city in Texas in the United States
 
20536
+#: ../data/Locations.xml.in.h:6406
 
20537
+msgid "New Braunfels"
 
20538
+msgstr ""
 
20539
+
 
20540
+#. A state/province/territory in Canada
 
20541
+#: ../data/Locations.xml.in.h:6408
 
20542
+msgid "New Brunswick"
 
20543
+msgstr ""
 
20544
+
 
20545
+#. NC - New Caledonia, a French territory in the South Pacific.
 
20546
+#. The French name is "Nouvelle-Calédonie".
 
20547
+#.
 
20548
+#: ../data/Locations.xml.in.h:6412
 
20549
+msgid "New Caledonia"
 
20550
+msgstr ""
 
20551
+
 
20552
+#. A city in Quebec in Canada
 
20553
+#: ../data/Locations.xml.in.h:6414
 
20554
+msgid "New Carlisle"
 
20555
+msgstr ""
 
20556
+
 
20557
+#. A city in Pennsylvania in the United States
 
20558
+#: ../data/Locations.xml.in.h:6416
 
20559
+msgid "New Castle"
 
20560
+msgstr ""
 
20561
+
 
20562
+#. The capital of India.
 
20563
+#. The local name in Urdu is "نئی دلی‎".
 
20564
+#. The local name in Panjabi is "ਨਵੀਂ ਦਿੱਲੀ".
 
20565
+#. The local name in Hindi is "नई दिल्ली".
 
20566
+#.
 
20567
+#: ../data/Locations.xml.in.h:6422
 
20568
+msgid "New Delhi"
 
20569
+msgstr ""
 
20570
+
 
20571
+#. A state/province/territory in United States
 
20572
+#: ../data/Locations.xml.in.h:6424
 
20573
+msgid "New Hampshire"
 
20574
+msgstr ""
 
20575
+
 
20576
+#. A city in Connecticut in the United States
 
20577
+#: ../data/Locations.xml.in.h:6426
 
20578
+msgid "New Haven"
 
20579
+msgstr ""
 
20580
+
 
20581
+#. A city in Louisiana in the United States
 
20582
+#: ../data/Locations.xml.in.h:6428
 
20583
+msgid "New Iberia"
 
20584
+msgstr ""
 
20585
+
 
20586
+#. A state/province/territory in United States
 
20587
+#: ../data/Locations.xml.in.h:6430
 
20588
+msgid "New Jersey"
 
20589
+msgstr ""
 
20590
+
 
20591
+#. A state/province/territory in United States
 
20592
+#: ../data/Locations.xml.in.h:6432
 
20593
+msgid "New Mexico"
 
20594
+msgstr ""
 
20595
+
 
20596
+#. A city in Louisiana in the United States
 
20597
+#: ../data/Locations.xml.in.h:6434
 
20598
+msgid "New Orleans"
 
20599
+msgstr ""
 
20600
+
 
20601
+#. A city in Ohio in the United States
 
20602
+#: ../data/Locations.xml.in.h:6436
 
20603
+msgid "New Philadelphia"
 
20604
+msgstr ""
 
20605
+
 
20606
+#. A city in Wisconsin in the United States
 
20607
+#: ../data/Locations.xml.in.h:6438
 
20608
+msgid "New Richmond"
 
20609
+msgstr ""
 
20610
+
 
20611
+#. A city in Florida in the United States
 
20612
+#: ../data/Locations.xml.in.h:6440
 
20613
+msgid "New Smyrna Beach"
 
20614
+msgstr ""
 
20615
+
 
20616
+#. A state/province/territory in Australia
 
20617
+#: ../data/Locations.xml.in.h:6442
 
20618
+msgid "New South Wales"
 
20619
+msgstr ""
 
20620
+
 
20621
+#. A city in Minnesota in the United States
 
20622
+#: ../data/Locations.xml.in.h:6444
 
20623
+msgid "New Ulm"
 
20624
+msgstr ""
 
20625
+
 
20626
+#. NZ - New Zealand
 
20627
+#: ../data/Locations.xml.in.h:6446
 
20628
+msgid "New Zealand"
 
20629
+msgstr ""
 
20630
+
 
20631
+#. A city in Michigan in the United States
 
20632
+#: ../data/Locations.xml.in.h:6448
 
20633
+msgid "Newberry"
 
20634
+msgstr ""
 
20635
+
 
20636
+#. A city in New York in the United States
 
20637
+#: ../data/Locations.xml.in.h:6450
 
20638
+msgid "Newburgh"
 
20639
+msgstr ""
 
20640
+
 
20641
+#. The time zone used in the Canadian province of
 
20642
+#. Newfoundland. In French-speaking parts of Canada it is
 
20643
+#. called "Heure de Terre-Neuve".
 
20644
+#.
 
20645
+#: ../data/Locations.xml.in.h:6455
 
20646
+msgid "Newfoundland Time"
 
20647
+msgstr ""
 
20648
+
 
20649
+#. A state/province/territory in Canada
 
20650
+#: ../data/Locations.xml.in.h:6457
 
20651
+msgid "Newfoundland and Labrador"
 
20652
+msgstr ""
 
20653
+
 
20654
+#. A city in Alaska in the United States
 
20655
+#: ../data/Locations.xml.in.h:6459
 
20656
+msgid "Newhalen"
 
20657
+msgstr ""
 
20658
+
 
20659
+#. A city in California in the United States
 
20660
+#: ../data/Locations.xml.in.h:6461
 
20661
+msgid "Newhall"
 
20662
+msgstr ""
 
20663
+
 
20664
+#. A city in Georgia in the United States
 
20665
+#: ../data/Locations.xml.in.h:6463
 
20666
+msgid "Newnan"
 
20667
+msgstr ""
 
20668
+
 
20669
+#. A city in Virginia in the United States
 
20670
+#: ../data/Locations.xml.in.h:6465
 
20671
+msgid "Newport News"
 
20672
+msgstr ""
 
20673
+
 
20674
+#. A city in Kansas in the United States
 
20675
+#: ../data/Locations.xml.in.h:6467
 
20676
+msgid "Newton"
 
20677
+msgstr ""
 
20678
+
 
20679
+#. A city in Cameroon
 
20680
+#: ../data/Locations.xml.in.h:6469
 
20681
+msgid "Ngaoundere"
 
20682
+msgstr ""
 
20683
+
 
20684
+#. A city in New York in the United States
 
20685
+#: ../data/Locations.xml.in.h:6471
 
20686
+msgid "Niagara Falls"
 
20687
+msgstr ""
 
20688
+
 
20689
+#. The capital of Niger
 
20690
+#: ../data/Locations.xml.in.h:6473
 
20691
+msgid "Niamey"
 
20692
+msgstr ""
 
20693
+
 
20694
+#. A city in Togo
 
20695
+#: ../data/Locations.xml.in.h:6475
 
20696
+msgid "Niamtougou"
 
20697
+msgstr ""
 
20698
+
 
20699
+#. NI - Nicaragua
 
20700
+#: ../data/Locations.xml.in.h:6477
 
20701
+msgid "Nicaragua"
 
20702
+msgstr ""
 
20703
+
 
20704
+#. A city in France
 
20705
+#: ../data/Locations.xml.in.h:6479
 
20706
+msgid "Nice"
 
20707
+msgstr ""
 
20708
+
 
20709
+#. A city in Quebec in Canada
 
20710
+#: ../data/Locations.xml.in.h:6481
 
20711
+msgid "Nicolet"
 
20712
+msgstr ""
 
20713
+
 
20714
+#. The capital of Cyprus
 
20715
+#: ../data/Locations.xml.in.h:6483
 
20716
+msgid "Nicosia"
 
20717
+msgstr ""
 
20718
+
 
20719
+#. A city in Baden-Württemberg in Germany
 
20720
+#: ../data/Locations.xml.in.h:6485
 
20721
+msgid "Niederstetten"
 
20722
+msgstr ""
 
20723
+
 
20724
+#. NE - Niger
 
20725
+#: ../data/Locations.xml.in.h:6487
 
20726
+msgid "Niger"
 
20727
+msgstr ""
 
20728
+
 
20729
+#. NG - Nigeria
 
20730
+#: ../data/Locations.xml.in.h:6489
 
20731
+msgid "Nigeria"
 
20732
+msgstr ""
 
20733
+
 
20734
+#. A city in Japan
 
20735
+#: ../data/Locations.xml.in.h:6491
 
20736
+msgid "Niigata"
 
20737
+msgstr ""
 
20738
+
 
20739
+#. A city in Saskatchewan in Canada
 
20740
+#: ../data/Locations.xml.in.h:6493
 
20741
+msgid "Nipawin"
 
20742
+msgstr ""
 
20743
+
 
20744
+#. A city in Slovakia
 
20745
+#: ../data/Locations.xml.in.h:6495
 
20746
+msgid "Nitra"
 
20747
+msgstr ""
 
20748
+
 
20749
+#. NU - Niue
 
20750
+#: ../data/Locations.xml.in.h:6497
 
20751
+msgid "Niue"
 
20752
+msgstr ""
 
20753
+
 
20754
+#. A city in Russia.
 
20755
+#. The local name in Russian is "Нижневартовск".
 
20756
+#.
 
20757
+#: ../data/Locations.xml.in.h:6501
 
20758
+msgid "Nizhnevartovsk"
 
20759
+msgstr ""
 
20760
+
 
20761
+#. A city in Serbia
 
20762
+#: ../data/Locations.xml.in.h:6503
 
20763
+msgid "Niš"
 
20764
+msgstr ""
 
20765
+
 
20766
+#. A city in Alaska in the United States
 
20767
+#: ../data/Locations.xml.in.h:6505
 
20768
+msgid "Noatak"
 
20769
+msgstr ""
 
20770
+
 
20771
+#. A city in Arizona in the United States
 
20772
+#: ../data/Locations.xml.in.h:6507
 
20773
+msgid "Nogales"
 
20774
+msgstr ""
 
20775
+
 
20776
+#. A city in Alaska in the United States
 
20777
+#: ../data/Locations.xml.in.h:6509
 
20778
+msgid "Nome"
 
20779
+msgstr ""
 
20780
+
 
20781
+#. A city in Lower Saxony in Germany
 
20782
+#: ../data/Locations.xml.in.h:6511
 
20783
+msgid "Nordholz"
 
20784
+msgstr ""
 
20785
+
 
20786
+#. NF - Norfolk Island, a territory of Australia
 
20787
+#: ../data/Locations.xml.in.h:6513
 
20788
+msgid "Norfolk Island"
 
20789
+msgstr ""
 
20790
+
 
20791
+#. A city in Oklahoma in the United States
 
20792
+#: ../data/Locations.xml.in.h:6515
 
20793
+msgid "Norman"
 
20794
+msgstr ""
 
20795
+
 
20796
+#. A city in Northwest Territories in Canada
 
20797
+#: ../data/Locations.xml.in.h:6517
 
20798
+msgid "Norman Wells"
 
20799
+msgstr ""
 
20800
+
 
20801
+#. A city in Quebec in Canada
 
20802
+#: ../data/Locations.xml.in.h:6519
 
20803
+msgid "Normandin"
 
20804
+msgstr ""
 
20805
+
 
20806
+#. A city in Sweden
 
20807
+#: ../data/Locations.xml.in.h:6521
 
20808
+msgid "Norrköping"
 
20809
+msgstr ""
 
20810
+
 
20811
+#. A city in Massachusetts in the United States
 
20812
+#: ../data/Locations.xml.in.h:6523
 
20813
+msgid "North Adams"
 
20814
+msgstr ""
 
20815
+
 
20816
+#: ../data/Locations.xml.in.h:6524
 
20817
+msgid "North America"
 
20818
+msgstr ""
 
20819
+
 
20820
+#. A city in Saskatchewan in Canada
 
20821
+#: ../data/Locations.xml.in.h:6526
 
20822
+msgid "North Battleford"
 
20823
+msgstr ""
 
20824
+
 
20825
+#. A city in Ontario in Canada
 
20826
+#: ../data/Locations.xml.in.h:6528
 
20827
+msgid "North Bay"
 
20828
+msgstr ""
 
20829
+
 
20830
+#. A city in Oregon in the United States
 
20831
+#: ../data/Locations.xml.in.h:6530
 
20832
+msgid "North Bend"
 
20833
+msgstr ""
 
20834
+
 
20835
+#. A state/province/territory in United States
 
20836
+#: ../data/Locations.xml.in.h:6532
 
20837
+msgid "North Carolina"
 
20838
+msgstr ""
 
20839
+
 
20840
+#. A state/province/territory in United States
 
20841
+#: ../data/Locations.xml.in.h:6534
 
20842
+msgid "North Dakota"
 
20843
+msgstr ""
 
20844
+
 
20845
+#. A state/province/territory in United Kingdom
 
20846
+#: ../data/Locations.xml.in.h:6536
 
20847
+msgid "North East England"
 
20848
+msgstr ""
 
20849
+
 
20850
+#. A city in British Columbia in Canada
 
20851
+#: ../data/Locations.xml.in.h:6538
 
20852
+msgid "North Kamloops"
 
20853
+msgstr ""
 
20854
+
 
20855
+#. KP - The Democratic People's Republic of Korea, aka North
 
20856
+#. Korea
 
20857
+#.
 
20858
+#: ../data/Locations.xml.in.h:6542
 
20859
+msgid "North Korea"
 
20860
+msgstr ""
 
20861
+
 
20862
+#. A city in Nevada in the United States
 
20863
+#: ../data/Locations.xml.in.h:6544
 
20864
+msgid "North Las Vegas"
 
20865
+msgstr ""
 
20866
+
 
20867
+#. A city in South Carolina in the United States
 
20868
+#: ../data/Locations.xml.in.h:6546
 
20869
+msgid "North Myrtle Beach"
 
20870
+msgstr ""
 
20871
+
 
20872
+#. A city in Nebraska in the United States
 
20873
+#: ../data/Locations.xml.in.h:6548
 
20874
+msgid "North Platte"
 
20875
+msgstr ""
 
20876
+
 
20877
+#. A state in Germany.  The local name is
 
20878
+#. "Nordrhein-Westfalen". Please use that unless you know
 
20879
+#. that it has a different name in your language.
 
20880
+#.
 
20881
+#: ../data/Locations.xml.in.h:6553
 
20882
+msgid "North Rhine-Westphalia"
 
20883
+msgstr ""
 
20884
+
 
20885
+#. A state/province/territory in United Kingdom
 
20886
+#: ../data/Locations.xml.in.h:6555
 
20887
+msgid "North West England"
 
20888
+msgstr ""
 
20889
+
 
20890
+#. A city in North Carolina in the United States
 
20891
+#: ../data/Locations.xml.in.h:6557
 
20892
+msgid "North Wilkesboro"
 
20893
+msgstr ""
 
20894
+
 
20895
+#. A state/province/territory in United Kingdom
 
20896
+#: ../data/Locations.xml.in.h:6559
 
20897
+msgid "Northern Ireland"
 
20898
+msgstr ""
 
20899
+
 
20900
+#. MP - Northern Mariana Islands, a semi-independent territory
 
20901
+#. of the United States in the western Pacific Ocean.
 
20902
+#.
 
20903
+#: ../data/Locations.xml.in.h:6563
 
20904
+msgid "Northern Mariana Islands"
 
20905
+msgstr ""
 
20906
+
 
20907
+#. A state/province/territory in Australia
 
20908
+#: ../data/Locations.xml.in.h:6565
 
20909
+msgid "Northern Territory"
 
20910
+msgstr ""
 
20911
+
 
20912
+#. A city in East and South East England in the United
 
20913
+#. Kingdom
 
20914
+#.
 
20915
+#: ../data/Locations.xml.in.h:6569
 
20916
+msgid "Northolt"
 
20917
+msgstr ""
 
20918
+
 
20919
+#. A city in Alaska in the United States
 
20920
+#: ../data/Locations.xml.in.h:6571
 
20921
+msgid "Northway"
 
20922
+msgstr ""
 
20923
+
 
20924
+#. A state/province/territory in Canada
 
20925
+#: ../data/Locations.xml.in.h:6573
 
20926
+msgid "Northwest Territories"
 
20927
+msgstr ""
 
20928
+
 
20929
+#. A city in California in the United States
 
20930
+#: ../data/Locations.xml.in.h:6575
 
20931
+msgid "Norwalk"
 
20932
+msgstr ""
 
20933
+
 
20934
+#. NO - Norway
 
20935
+#: ../data/Locations.xml.in.h:6577
 
20936
+msgid "Norway"
 
20937
+msgstr ""
 
20938
+
 
20939
+#. A city in Manitoba in Canada
 
20940
+#: ../data/Locations.xml.in.h:6579
 
20941
+msgid "Norway House"
 
20942
+msgstr ""
 
20943
+
 
20944
+#. A city in East and South East England in the United
 
20945
+#. Kingdom
 
20946
+#.
 
20947
+#: ../data/Locations.xml.in.h:6583
 
20948
+msgid "Norwich"
 
20949
+msgstr ""
 
20950
+
 
20951
+#. A city in Massachusetts in the United States
 
20952
+#: ../data/Locations.xml.in.h:6585
 
20953
+msgid "Norwood"
 
20954
+msgstr ""
 
20955
+
 
20956
+#. A city in Norway
 
20957
+#: ../data/Locations.xml.in.h:6587
 
20958
+msgid "Notodden"
 
20959
+msgstr ""
 
20960
+
 
20961
+#. A city in Quebec in Canada
 
20962
+#: ../data/Locations.xml.in.h:6589
 
20963
+msgid "Notre-Dame-de-la-Salette"
 
20964
+msgstr ""
 
20965
+
 
20966
+#. A city in Mauritania
 
20967
+#: ../data/Locations.xml.in.h:6591
 
20968
+msgid "Nouadhibou"
 
20969
+msgstr ""
 
20970
+
 
20971
+#. The capital of Mauritania
 
20972
+#: ../data/Locations.xml.in.h:6593
 
20973
+msgid "Nouakchott"
 
20974
+msgstr ""
 
20975
+
 
20976
+#. A city in Morocco
 
20977
+#: ../data/Locations.xml.in.h:6595
 
20978
+msgid "Nouaseur"
 
20979
+msgstr ""
 
20980
+
 
20981
+#. The capital of New Caledonia
 
20982
+#: ../data/Locations.xml.in.h:6597
 
20983
+msgid "Nouméa"
 
20984
+msgstr ""
 
20985
+
 
20986
+#. A city in Quebec in Canada
 
20987
+#: ../data/Locations.xml.in.h:6599
 
20988
+msgid "Nouveau-Comptoir"
 
20989
+msgstr ""
 
20990
+
 
20991
+#. A state/province/territory in Canada
 
20992
+#: ../data/Locations.xml.in.h:6601
 
20993
+msgid "Nova Scotia"
 
20994
+msgstr ""
 
20995
+
 
20996
+#. A city in Russia.
 
20997
+#. The local name in Russian is "Новокузнецк".
 
20998
+#.
 
20999
+#: ../data/Locations.xml.in.h:6605
 
21000
+msgid "Novokuznetsk"
 
21001
+msgstr ""
 
21002
+
 
21003
+#. A city in Russia.
 
21004
+#. The local name in Russian is "Новосибирск".
 
21005
+#.
 
21006
+#: ../data/Locations.xml.in.h:6609
 
21007
+msgid "Novosibirsk"
 
21008
+msgstr ""
 
21009
+
 
21010
+#. A city in Iran.
 
21011
+#. The name is also written "نو شهر".
 
21012
+#.
 
21013
+#: ../data/Locations.xml.in.h:6613
 
21014
+msgid "Now Shahr"
 
21015
+msgstr ""
 
21016
+
 
21017
+#. A city in Spain
 
21018
+#: ../data/Locations.xml.in.h:6615
 
21019
+msgid "Noáin"
 
21020
+msgstr ""
 
21021
+
 
21022
+#. A city in Tamaulipas in Mexico
 
21023
+#: ../data/Locations.xml.in.h:6617
 
21024
+msgid "Nuevo Laredo"
 
21025
+msgstr ""
 
21026
+
 
21027
+#. A state/province/territory in Mexico
 
21028
+#: ../data/Locations.xml.in.h:6619
 
21029
+msgid "Nuevo León"
 
21030
+msgstr ""
 
21031
+
 
21032
+#. A city in Alaska in the United States
 
21033
+#: ../data/Locations.xml.in.h:6621
 
21034
+msgid "Nuiqsut"
 
21035
+msgstr ""
 
21036
+
 
21037
+#. The capital of Tonga
 
21038
+#: ../data/Locations.xml.in.h:6623
 
21039
+msgid "Nuku'alofa"
 
21040
+msgstr ""
 
21041
+
 
21042
+#. A city in Uzbekistan
 
21043
+#: ../data/Locations.xml.in.h:6625
 
21044
+msgid "Nukus"
 
21045
+msgstr ""
 
21046
+
 
21047
+#. A state/province/territory in Canada
 
21048
+#: ../data/Locations.xml.in.h:6627
 
21049
+msgid "Nunavut"
 
21050
+msgstr ""
 
21051
+
 
21052
+#. A city in Bavaria in Germany.
 
21053
+#. "Nuremberg" is the traditional English name.
 
21054
+#. The local name is "Nürnberg".
 
21055
+#.
 
21056
+#: ../data/Locations.xml.in.h:6632
 
21057
+msgid "Nuremberg"
 
21058
+msgstr ""
 
21059
+
 
21060
+#. A city in Newfoundland and Labrador in Canada
 
21061
+#: ../data/Locations.xml.in.h:6634
 
21062
+msgid "Nutak"
 
21063
+msgstr ""
 
21064
+
 
21065
+#. A city in Sweden
 
21066
+#: ../data/Locations.xml.in.h:6636
 
21067
+msgid "Nyköping"
 
21068
+msgstr ""
 
21069
+
 
21070
+#. A city in Greece
 
21071
+#: ../data/Locations.xml.in.h:6638
 
21072
+msgid "Náxos"
 
21073
+msgstr ""
 
21074
+
 
21075
+#. A city in France
 
21076
+#: ../data/Locations.xml.in.h:6640
 
21077
+msgid "Nîmes"
 
21078
+msgstr ""
 
21079
+
 
21080
+#. A city in Nebraska in the United States
 
21081
+#: ../data/Locations.xml.in.h:6642
 
21082
+msgid "O'Neill"
 
21083
+msgstr ""
 
21084
+
 
21085
+#. A city in Washington in the United States
 
21086
+#: ../data/Locations.xml.in.h:6644
 
21087
+msgid "Oak Harbor"
 
21088
+msgstr ""
 
21089
+
 
21090
+#. A city in North Carolina in the United States
 
21091
+#: ../data/Locations.xml.in.h:6646
 
21092
+msgid "Oak Island"
 
21093
+msgstr ""
 
21094
+
 
21095
+#. A city in Tennessee in the United States
 
21096
+#: ../data/Locations.xml.in.h:6648
 
21097
+msgid "Oak Ridge"
 
21098
+msgstr ""
 
21099
+
 
21100
+#. A city in Louisiana in the United States
 
21101
+#: ../data/Locations.xml.in.h:6650
 
21102
+msgid "Oakdale"
 
21103
+msgstr ""
 
21104
+
 
21105
+#. A city in California in the United States
 
21106
+#: ../data/Locations.xml.in.h:6652
 
21107
+msgid "Oakland"
 
21108
+msgstr ""
 
21109
+
 
21110
+#. A city in Bavaria in Germany
 
21111
+#: ../data/Locations.xml.in.h:6654
 
21112
+msgid "Oberpfaffenhofen"
 
21113
+msgstr ""
 
21114
+
 
21115
+#. A city in Japan
 
21116
+#: ../data/Locations.xml.in.h:6656
 
21117
+msgid "Obihiro"
 
21118
+msgstr ""
 
21119
+
 
21120
+#. A city in Florida in the United States
 
21121
+#: ../data/Locations.xml.in.h:6658
 
21122
+msgid "Ocala"
 
21123
+msgstr ""
 
21124
+
 
21125
+#. A city in Maryland in the United States
 
21126
+#: ../data/Locations.xml.in.h:6660
 
21127
+msgid "Ocean City"
 
21128
+msgstr ""
 
21129
+
 
21130
+#. A city in British Columbia in Canada
 
21131
+#: ../data/Locations.xml.in.h:6662
 
21132
+msgid "Ocean Falls"
 
21133
+msgstr ""
 
21134
+
 
21135
+#. A city in California in the United States
 
21136
+#: ../data/Locations.xml.in.h:6664
 
21137
+msgid "Oceanside"
 
21138
+msgstr ""
 
21139
+
 
21140
+#. A city in Japan
 
21141
+#: ../data/Locations.xml.in.h:6666
 
21142
+msgid "Odaira"
 
21143
+msgstr ""
 
21144
+
 
21145
+#. A city in Japan
 
21146
+#: ../data/Locations.xml.in.h:6668
 
21147
+msgid "Odaka"
 
21148
+msgstr ""
 
21149
+
 
21150
+#. A city in Japan
 
21151
+#: ../data/Locations.xml.in.h:6670
 
21152
+msgid "Odate"
 
21153
+msgstr ""
 
21154
+
 
21155
+#. A city in Denmark
 
21156
+#: ../data/Locations.xml.in.h:6672
 
21157
+msgid "Odense"
 
21158
+msgstr ""
 
21159
+
 
21160
+#. A city in Ukraine
 
21161
+#: ../data/Locations.xml.in.h:6674
 
21162
+msgid "Odesa"
 
21163
+msgstr ""
 
21164
+
 
21165
+#. A city in Texas in the United States
 
21166
+#: ../data/Locations.xml.in.h:6676
 
21167
+msgid "Odessa"
 
21168
+msgstr ""
 
21169
+
 
21170
+#. A city in East and South East England in the United
 
21171
+#. Kingdom
 
21172
+#.
 
21173
+#: ../data/Locations.xml.in.h:6680
 
21174
+msgid "Odiham"
 
21175
+msgstr ""
 
21176
+
 
21177
+#. A city in Iowa in the United States
 
21178
+#: ../data/Locations.xml.in.h:6682
 
21179
+msgid "Oelwein"
 
21180
+msgstr ""
 
21181
+
 
21182
+#. A city in Japan
 
21183
+#: ../data/Locations.xml.in.h:6684
 
21184
+msgid "Ofunakoshi"
 
21185
+msgstr ""
 
21186
+
 
21187
+#. A city in Nebraska in the United States
 
21188
+#: ../data/Locations.xml.in.h:6686
 
21189
+msgid "Ogallala"
 
21190
+msgstr ""
 
21191
+
 
21192
+#. A city in Utah in the United States
 
21193
+#: ../data/Locations.xml.in.h:6688
 
21194
+msgid "Ogden"
 
21195
+msgstr ""
 
21196
+
 
21197
+#. A city in Japan
 
21198
+#: ../data/Locations.xml.in.h:6690
 
21199
+msgid "Ogimachiya"
 
21200
+msgstr ""
 
21201
+
 
21202
+#. A state/province/territory in United States
 
21203
+#: ../data/Locations.xml.in.h:6692
 
21204
+msgid "Ohio"
 
21205
+msgstr ""
 
21206
+
 
21207
+#. A city in Macedonia
 
21208
+#: ../data/Locations.xml.in.h:6694
 
21209
+msgid "Ohrid"
 
21210
+msgstr ""
 
21211
+
 
21212
+#. A city in Amapá in Brazil
 
21213
+#: ../data/Locations.xml.in.h:6696
 
21214
+msgid "Oiapoque"
 
21215
+msgstr ""
 
21216
+
 
21217
+#. A city in Japan
 
21218
+#: ../data/Locations.xml.in.h:6698
 
21219
+msgid "Oita"
 
21220
+msgstr ""
 
21221
+
 
21222
+#. A city in Japan
 
21223
+#: ../data/Locations.xml.in.h:6700
 
21224
+msgid "Okata"
 
21225
+msgstr ""
 
21226
+
 
21227
+#. A city in Japan
 
21228
+#: ../data/Locations.xml.in.h:6702
 
21229
+msgid "Okayama"
 
21230
+msgstr ""
 
21231
+
 
21232
+#. A city in Japan
 
21233
+#: ../data/Locations.xml.in.h:6704
 
21234
+msgid "Okazato"
 
21235
+msgstr ""
 
21236
+
 
21237
+#. A city in Florida in the United States
 
21238
+#: ../data/Locations.xml.in.h:6706
 
21239
+msgid "Okeechobee"
 
21240
+msgstr ""
 
21241
+
 
21242
+#. A state/province/territory in United States
 
21243
+#: ../data/Locations.xml.in.h:6708
 
21244
+msgid "Oklahoma"
 
21245
+msgstr ""
 
21246
+
 
21247
+#. A city in Oklahoma in the United States
 
21248
+#: ../data/Locations.xml.in.h:6710
 
21249
+msgid "Oklahoma City"
 
21250
+msgstr ""
 
21251
+
 
21252
+#. A city in Oklahoma in the United States
 
21253
+#: ../data/Locations.xml.in.h:6712
 
21254
+msgid "Okmulgee"
 
21255
+msgstr ""
 
21256
+
 
21257
+#. A city in Kansas in the United States
 
21258
+#: ../data/Locations.xml.in.h:6714
 
21259
+msgid "Olathe"
 
21260
+msgstr ""
 
21261
+
 
21262
+#. A city in Italy
 
21263
+#: ../data/Locations.xml.in.h:6716
 
21264
+msgid "Olbia"
 
21265
+msgstr ""
 
21266
+
 
21267
+#. A city in Yukon Territory in Canada
 
21268
+#: ../data/Locations.xml.in.h:6718
 
21269
+msgid "Old Crow"
 
21270
+msgstr ""
 
21271
+
 
21272
+#. A city in Mississippi in the United States
 
21273
+#: ../data/Locations.xml.in.h:6720
 
21274
+msgid "Olive Branch"
 
21275
+msgstr ""
 
21276
+
 
21277
+#. A city in Minnesota in the United States
 
21278
+#: ../data/Locations.xml.in.h:6722
 
21279
+msgid "Olivia"
 
21280
+msgstr ""
 
21281
+
 
21282
+#. A city in Illinois in the United States
 
21283
+#: ../data/Locations.xml.in.h:6724
 
21284
+msgid "Olney"
 
21285
+msgstr ""
 
21286
+
 
21287
+#. A city in Washington in the United States
 
21288
+#: ../data/Locations.xml.in.h:6726
 
21289
+msgid "Olympia"
 
21290
+msgstr ""
 
21291
+
 
21292
+#. A city in Nebraska in the United States
 
21293
+#: ../data/Locations.xml.in.h:6728
 
21294
+msgid "Omaha"
 
21295
+msgstr ""
 
21296
+
 
21297
+#. A city in Washington in the United States
 
21298
+#: ../data/Locations.xml.in.h:6730
 
21299
+msgid "Omak"
 
21300
+msgstr ""
 
21301
+
 
21302
+#. OM - Oman
 
21303
+#: ../data/Locations.xml.in.h:6732
 
21304
+msgid "Oman"
 
21305
+msgstr ""
 
21306
+
 
21307
+#. A city in Russia.
 
21308
+#. The local name in Russian is "Омск".
 
21309
+#.
 
21310
+#: ../data/Locations.xml.in.h:6736
 
21311
+msgid "Omsk"
 
21312
+msgstr ""
 
21313
+
 
21314
+#. A Russian time zone, used in the Omsk and Novosibirsk
 
21315
+#. oblasts and surrounding areas of south-central Russia.
 
21316
+#. The Russian name is "Омское время". This string is only
 
21317
+#. used in places where "Russia" is already clear from
 
21318
+#. context.
 
21319
+#.
 
21320
+#: ../data/Locations.xml.in.h:6743
 
21321
+msgid "Omsk Time"
 
21322
+msgstr ""
 
21323
+
 
21324
+#. A city in Alberta in Canada
 
21325
+#: ../data/Locations.xml.in.h:6745
 
21326
+msgid "Onefour"
 
21327
+msgstr ""
 
21328
+
 
21329
+#. A city in the Netherlands
 
21330
+#: ../data/Locations.xml.in.h:6747
 
21331
+msgid "Oost-Vlieland"
 
21332
+msgstr ""
 
21333
+
 
21334
+#. A city in West-Flanders in Belgium
 
21335
+#: ../data/Locations.xml.in.h:6749
 
21336
+msgid "Oostende"
 
21337
+msgstr ""
 
21338
+
 
21339
+#. A city in Romania
 
21340
+#: ../data/Locations.xml.in.h:6751
 
21341
+msgid "Oradea"
 
21342
+msgstr ""
 
21343
+
 
21344
+#. A city in Kazakhstan.
 
21345
+#. The local name in Russian is "Ural'sk".
 
21346
+#.
 
21347
+#: ../data/Locations.xml.in.h:6755
 
21348
+msgid "Oral"
 
21349
+msgstr ""
 
21350
+
 
21351
+#. A city in Algeria
 
21352
+#: ../data/Locations.xml.in.h:6757
 
21353
+msgid "Oran"
 
21354
+msgstr ""
 
21355
+
 
21356
+#. A city in Iowa in the United States
 
21357
+#: ../data/Locations.xml.in.h:6759
 
21358
+msgid "Orange City"
 
21359
+msgstr ""
 
21360
+
 
21361
+#. A city in South Carolina in the United States
 
21362
+#: ../data/Locations.xml.in.h:6761
 
21363
+msgid "Orangeburg"
 
21364
+msgstr ""
 
21365
+
 
21366
+#. The capital of Aruba
 
21367
+#: ../data/Locations.xml.in.h:6763
 
21368
+msgid "Oranjestad"
 
21369
+msgstr ""
 
21370
+
 
21371
+#. A city in Nebraska in the United States
 
21372
+#: ../data/Locations.xml.in.h:6765
 
21373
+msgid "Ord"
 
21374
+msgstr ""
 
21375
+
 
21376
+#. A state/province/territory in United States
 
21377
+#: ../data/Locations.xml.in.h:6767
 
21378
+msgid "Oregon"
 
21379
+msgstr ""
 
21380
+
 
21381
+#. A city in Russia.
 
21382
+#. The local name in Russian is "Оренбург".
 
21383
+#.
 
21384
+#: ../data/Locations.xml.in.h:6771
 
21385
+msgid "Orenburg"
 
21386
+msgstr ""
 
21387
+
 
21388
+#. A city in Florida in the United States
 
21389
+#: ../data/Locations.xml.in.h:6773
 
21390
+msgid "Orlando"
 
21391
+msgstr ""
 
21392
+
 
21393
+#. A city in France
 
21394
+#: ../data/Locations.xml.in.h:6775
 
21395
+msgid "Orléans"
 
21396
+msgstr ""
 
21397
+
 
21398
+#. A city in Florida in the United States
 
21399
+#: ../data/Locations.xml.in.h:6777
 
21400
+msgid "Ormond Beach"
 
21401
+msgstr ""
 
21402
+
 
21403
+#. A city in California in the United States
 
21404
+#: ../data/Locations.xml.in.h:6779
 
21405
+msgid "Oroville"
 
21406
+msgstr ""
 
21407
+
 
21408
+#. A city in Minnesota in the United States
 
21409
+#: ../data/Locations.xml.in.h:6781
 
21410
+msgid "Orr"
 
21411
+msgstr ""
 
21412
+
 
21413
+#. A city in Minnesota in the United States
 
21414
+#: ../data/Locations.xml.in.h:6783
 
21415
+msgid "Ortonville"
 
21416
+msgstr ""
 
21417
+
 
21418
+#. A city in Iran.
 
21419
+#. The name is also written "ارومیه".
 
21420
+#.
 
21421
+#: ../data/Locations.xml.in.h:6787
 
21422
+msgid "Orumiyeh"
 
21423
+msgstr ""
 
21424
+
 
21425
+#. A city in Bolivia
 
21426
+#: ../data/Locations.xml.in.h:6789
 
21427
+msgid "Oruro"
 
21428
+msgstr ""
 
21429
+
 
21430
+#. A city in Japan
 
21431
+#: ../data/Locations.xml.in.h:6791
 
21432
+msgid "Osaka"
 
21433
+msgstr ""
 
21434
+
 
21435
+#. A city in South Korea.
 
21436
+#. The name is also written "오산".
 
21437
+#.
 
21438
+#: ../data/Locations.xml.in.h:6795
 
21439
+msgid "Osan"
 
21440
+msgstr ""
 
21441
+
 
21442
+#. A city in Wisconsin in the United States
 
21443
+#: ../data/Locations.xml.in.h:6797
 
21444
+msgid "Osceola"
 
21445
+msgstr ""
 
21446
+
 
21447
+#. A city in Michigan in the United States
 
21448
+#: ../data/Locations.xml.in.h:6799
 
21449
+msgid "Oscoda"
 
21450
+msgstr ""
 
21451
+
 
21452
+#. A city in Norway
 
21453
+#: ../data/Locations.xml.in.h:6801
 
21454
+msgid "Oseberg"
 
21455
+msgstr ""
 
21456
+
 
21457
+#. A city in Wisconsin in the United States
 
21458
+#: ../data/Locations.xml.in.h:6803
 
21459
+msgid "Oshkosh"
 
21460
+msgstr ""
 
21461
+
 
21462
+#. A city in Croatia
 
21463
+#: ../data/Locations.xml.in.h:6805
 
21464
+msgid "Osijek"
 
21465
+msgstr ""
 
21466
+
 
21467
+#. A city in Iowa in the United States
 
21468
+#: ../data/Locations.xml.in.h:6807
 
21469
+msgid "Oskaloosa"
 
21470
+msgstr ""
 
21471
+
 
21472
+#. The capital of Norway
 
21473
+#: ../data/Locations.xml.in.h:6809
 
21474
+msgid "Oslo"
 
21475
+msgstr ""
 
21476
+
 
21477
+#. A city in British Columbia in Canada
 
21478
+#: ../data/Locations.xml.in.h:6811
 
21479
+msgid "Osoyoos"
 
21480
+msgstr ""
 
21481
+
 
21482
+#. A city in the Czech Republic
 
21483
+#: ../data/Locations.xml.in.h:6813
 
21484
+msgid "Ostrava"
 
21485
+msgstr ""
 
21486
+
 
21487
+#. The capital of Canada
 
21488
+#: ../data/Locations.xml.in.h:6815
 
21489
+msgid "Ottawa"
 
21490
+msgstr ""
 
21491
+
 
21492
+#. A city in Iowa in the United States
 
21493
+#: ../data/Locations.xml.in.h:6817
 
21494
+msgid "Ottumwa"
 
21495
+msgstr ""
 
21496
+
 
21497
+#. The capital of Burkina Faso
 
21498
+#: ../data/Locations.xml.in.h:6819
 
21499
+msgid "Ouagadougou"
 
21500
+msgstr ""
 
21501
+
 
21502
+#. A city in Algeria
 
21503
+#: ../data/Locations.xml.in.h:6821
 
21504
+msgid "Ouargla"
 
21505
+msgstr ""
 
21506
+
 
21507
+#. A city in Morocco
 
21508
+#: ../data/Locations.xml.in.h:6823
 
21509
+msgid "Ouarzazat"
 
21510
+msgstr ""
 
21511
+
 
21512
+#. A city in Morocco
 
21513
+#: ../data/Locations.xml.in.h:6825
 
21514
+msgid "Oujda"
 
21515
+msgstr ""
 
21516
+
 
21517
+#. A city in Finland
 
21518
+#: ../data/Locations.xml.in.h:6827
 
21519
+msgid "Oulu"
 
21520
+msgstr ""
 
21521
+
 
21522
+#. A city in Portugal
 
21523
+#: ../data/Locations.xml.in.h:6829
 
21524
+msgid "Ovar"
 
21525
+msgstr ""
 
21526
+
 
21527
+#. A city in Kansas in the United States
 
21528
+#: ../data/Locations.xml.in.h:6831
 
21529
+msgid "Overland Park"
 
21530
+msgstr ""
 
21531
+
 
21532
+#. A city in Minnesota in the United States
 
21533
+#: ../data/Locations.xml.in.h:6833
 
21534
+msgid "Owatonna"
 
21535
+msgstr ""
 
21536
+
 
21537
+#. A city in Kentucky in the United States
 
21538
+#: ../data/Locations.xml.in.h:6835
 
21539
+msgid "Owensboro"
 
21540
+msgstr ""
 
21541
+
 
21542
+#. A city in Michigan in the United States
 
21543
+#: ../data/Locations.xml.in.h:6837
 
21544
+msgid "Owosso"
 
21545
+msgstr ""
 
21546
+
 
21547
+#. A city in California in the United States
 
21548
+#: ../data/Locations.xml.in.h:6839
 
21549
+msgid "Oxnard"
 
21550
+msgstr ""
 
21551
+
 
21552
+#. A city in Alabama in the United States
 
21553
+#: ../data/Locations.xml.in.h:6841
 
21554
+msgid "Ozark"
 
21555
+msgstr ""
 
21556
+
 
21557
+#. A city in Japan
 
21558
+#: ../data/Locations.xml.in.h:6843
 
21559
+msgid "Ozuki"
 
21560
+msgstr ""
 
21561
+
 
21562
+#. A city in South Korea
 
21563
+#: ../data/Locations.xml.in.h:6845
 
21564
+msgid "P'yongt'aek"
 
21565
+msgstr ""
 
21566
+
 
21567
+#. The time zone used on most of the west coast of North
 
21568
+#. America. In Mexico it is called "Tiempo del Pacífico"
 
21569
+#. and in French-speaking parts of Canada it is called
 
21570
+#. "Heure du Pacifique". The string is only used in places
 
21571
+#. where "US", "Canada" or "Mexico" is already clear from
 
21572
+#. the context.
 
21573
+#.
 
21574
+#: ../data/Locations.xml.in.h:6853
 
21575
+msgid "Pacific Time"
 
21576
+msgstr ""
 
21577
+
 
21578
+#. A city in North Rhine-Westphalia in Germany
 
21579
+#: ../data/Locations.xml.in.h:6855
 
21580
+msgid "Paderborn"
 
21581
+msgstr ""
 
21582
+
 
21583
+#. A city in Kentucky in the United States
 
21584
+#: ../data/Locations.xml.in.h:6857
 
21585
+msgid "Paducah"
 
21586
+msgstr ""
 
21587
+
 
21588
+#. A city in Arizona in the United States
 
21589
+#: ../data/Locations.xml.in.h:6859
 
21590
+msgid "Page"
 
21591
+msgstr ""
 
21592
+
 
21593
+#. A city in American Samoa
 
21594
+#: ../data/Locations.xml.in.h:6861
 
21595
+msgid "Pago Pago"
 
21596
+msgstr ""
 
21597
+
 
21598
+#. A city in Colorado in the United States
 
21599
+#: ../data/Locations.xml.in.h:6863
 
21600
+msgid "Pagosa Springs"
 
21601
+msgstr ""
 
21602
+
 
21603
+#. PK - Pakistan
 
21604
+#: ../data/Locations.xml.in.h:6865
 
21605
+msgid "Pakistan"
 
21606
+msgstr ""
 
21607
+
 
21608
+#. A city in Texas in the United States
 
21609
+#: ../data/Locations.xml.in.h:6867
 
21610
+msgid "Palacios"
 
21611
+msgstr ""
 
21612
+
 
21613
+#. A city in Lithuania
 
21614
+#: ../data/Locations.xml.in.h:6869
 
21615
+msgid "Palanga"
 
21616
+msgstr ""
 
21617
+
 
21618
+#. PW - Palau
 
21619
+#: ../data/Locations.xml.in.h:6871
 
21620
+msgid "Palau"
 
21621
+msgstr ""
 
21622
+
 
21623
+#. A city in Italy
 
21624
+#: ../data/Locations.xml.in.h:6873
 
21625
+msgid "Palazzo"
 
21626
+msgstr ""
 
21627
+
 
21628
+#. A city in Indonesia
 
21629
+#: ../data/Locations.xml.in.h:6875
 
21630
+msgid "Palembang"
 
21631
+msgstr ""
 
21632
+
 
21633
+#. A city in Italy
 
21634
+#: ../data/Locations.xml.in.h:6877
 
21635
+msgid "Palermo"
 
21636
+msgstr ""
 
21637
+
 
21638
+#. A city in Texas in the United States
 
21639
+#: ../data/Locations.xml.in.h:6879
 
21640
+msgid "Palestine"
 
21641
+msgstr ""
 
21642
+
 
21643
+#. PS - Occupied Palestinian Territory
 
21644
+#: ../data/Locations.xml.in.h:6881
 
21645
+msgid "Palestinian Territory"
 
21646
+msgstr ""
 
21647
+
 
21648
+#. The capital of the Federated States of Micronesia
 
21649
+#: ../data/Locations.xml.in.h:6883
 
21650
+msgid "Palikir"
 
21651
+msgstr ""
 
21652
+
 
21653
+#. A city in California in the United States
 
21654
+#: ../data/Locations.xml.in.h:6885
 
21655
+msgid "Palm Springs"
 
21656
+msgstr ""
 
21657
+
 
21658
+#. A city in Spain
 
21659
+#: ../data/Locations.xml.in.h:6887
 
21660
+msgid "Palma"
 
21661
+msgstr ""
 
21662
+
 
21663
+#. A city in California in the United States
 
21664
+#: ../data/Locations.xml.in.h:6889
 
21665
+msgid "Palmdale"
 
21666
+msgstr ""
 
21667
+
 
21668
+#. A city in São Paulo in Brazil
 
21669
+#: ../data/Locations.xml.in.h:6891
 
21670
+msgid "Palmeiras"
 
21671
+msgstr ""
 
21672
+
 
21673
+#. A city in Alaska in the United States
 
21674
+#: ../data/Locations.xml.in.h:6893
 
21675
+msgid "Palmer"
 
21676
+msgstr ""
 
21677
+
 
21678
+#. An American research station in Antarctica, which keeps
 
21679
+#. the same time as mainland Chile. The string is only used
 
21680
+#. in places where "Antarctica" is already clear from
 
21681
+#. context.
 
21682
+#.
 
21683
+#: ../data/Locations.xml.in.h:6899
 
21684
+msgid "Palmer Station (Chile Time)"
 
21685
+msgstr ""
 
21686
+
 
21687
+#. A city in California in the United States
 
21688
+#: ../data/Locations.xml.in.h:6901
 
21689
+msgid "Palo Alto"
 
21690
+msgstr ""
 
21691
+
 
21692
+#. A city in Texas in the United States
 
21693
+#: ../data/Locations.xml.in.h:6903
 
21694
+msgid "Pampa"
 
21695
+msgstr ""
 
21696
+
 
21697
+#. PA - Panama. The local (Spanish) name is "Panamá". In common
 
21698
+#. English usage (and in ISO 3166) it does not have the accent.
 
21699
+#.
 
21700
+#: ../data/Locations.xml.in.h:6907
 
21701
+msgid "Panama"
 
21702
+msgstr ""
 
21703
+
 
21704
+#. A city in Florida in the United States
 
21705
+#: ../data/Locations.xml.in.h:6909
 
21706
+msgid "Panama City"
 
21707
+msgstr ""
 
21708
+
 
21709
+#. The capital of Panama
 
21710
+#: ../data/Locations.xml.in.h:6911
 
21711
+msgid "Panamá"
 
21712
+msgstr ""
 
21713
+
 
21714
+#. A city in Italy
 
21715
+#: ../data/Locations.xml.in.h:6913
 
21716
+msgid "Paneveggio"
 
21717
+msgstr ""
 
21718
+
 
21719
+#. A city in Nunavut in Canada
 
21720
+#: ../data/Locations.xml.in.h:6915
 
21721
+msgid "Pangnirtung"
 
21722
+msgstr ""
 
21723
+
 
21724
+#. A city in the Dominican Republic
 
21725
+#: ../data/Locations.xml.in.h:6917
 
21726
+msgid "Pantanal"
 
21727
+msgstr ""
 
21728
+
 
21729
+#. A city in Italy
 
21730
+#: ../data/Locations.xml.in.h:6919
 
21731
+msgid "Pantelleria"
 
21732
+msgstr ""
 
21733
+
 
21734
+#. The capital of French Polynesia
 
21735
+#: ../data/Locations.xml.in.h:6921
 
21736
+msgid "Papeete"
 
21737
+msgstr ""
 
21738
+
 
21739
+#. A city in Cyprus
 
21740
+#: ../data/Locations.xml.in.h:6923
 
21741
+msgid "Paphos"
 
21742
+msgstr ""
 
21743
+
 
21744
+#. PG - Papua New Guinea
 
21745
+#: ../data/Locations.xml.in.h:6925
 
21746
+msgid "Papua New Guinea"
 
21747
+msgstr ""
 
21748
+
 
21749
+#. A city in Greece
 
21750
+#: ../data/Locations.xml.in.h:6927
 
21751
+msgid "Paradeísion"
 
21752
+msgstr ""
 
21753
+
 
21754
+#. A city in Barbados
 
21755
+#: ../data/Locations.xml.in.h:6929
 
21756
+msgid "Paragon"
 
21757
+msgstr ""
 
21758
+
 
21759
+#. PY - Paraguay
 
21760
+#: ../data/Locations.xml.in.h:6931
 
21761
+msgid "Paraguay"
 
21762
+msgstr ""
 
21763
+
 
21764
+#. The capital of Suriname
 
21765
+#: ../data/Locations.xml.in.h:6933
 
21766
+msgid "Paramaribo"
 
21767
+msgstr ""
 
21768
+
 
21769
+#. A city in Venezuela
 
21770
+#: ../data/Locations.xml.in.h:6935
 
21771
+msgid "Paramillo"
 
21772
+msgstr ""
 
21773
+
 
21774
+#. A state/province/territory in Brazil
 
21775
+#: ../data/Locations.xml.in.h:6937
 
21776
+msgid "Paraná"
 
21777
+msgstr ""
 
21778
+
 
21779
+#. A state/province/territory in Brazil
 
21780
+#: ../data/Locations.xml.in.h:6939
 
21781
+msgid "Paraíba"
 
21782
+msgstr ""
 
21783
+
 
21784
+#. A city in Mecklenburg-Western Pomerania in Germany
 
21785
+#: ../data/Locations.xml.in.h:6941
 
21786
+msgid "Parchim"
 
21787
+msgstr ""
 
21788
+
 
21789
+#. A city in Quebec in Canada
 
21790
+#: ../data/Locations.xml.in.h:6943
 
21791
+msgid "Parent"
 
21792
+msgstr ""
 
21793
+
 
21794
+#. A city in Minnesota in the United States
 
21795
+#: ../data/Locations.xml.in.h:6945
 
21796
+msgid "Park Rapids"
 
21797
+msgstr ""
 
21798
+
 
21799
+#. A city in West Virginia in the United States
 
21800
+#: ../data/Locations.xml.in.h:6947
 
21801
+msgid "Parkersburg"
 
21802
+msgstr ""
 
21803
+
 
21804
+#. A city in Italy
 
21805
+#: ../data/Locations.xml.in.h:6949
 
21806
+msgid "Parma"
 
21807
+msgstr ""
 
21808
+
 
21809
+#. A city in Piauí in Brazil
 
21810
+#: ../data/Locations.xml.in.h:6951
 
21811
+msgid "Parnaíba"
 
21812
+msgstr ""
 
21813
+
 
21814
+#. A city in Kansas in the United States
 
21815
+#: ../data/Locations.xml.in.h:6953
 
21816
+msgid "Parsons"
 
21817
+msgstr ""
 
21818
+
 
21819
+#. A state/province/territory in Brazil
 
21820
+#: ../data/Locations.xml.in.h:6955
 
21821
+msgid "Pará"
 
21822
+msgstr ""
 
21823
+
 
21824
+#. A city in Mississippi in the United States
 
21825
+#: ../data/Locations.xml.in.h:6957
 
21826
+msgid "Pascagoula"
 
21827
+msgstr ""
 
21828
+
 
21829
+#. A city in Washington in the United States
 
21830
+#: ../data/Locations.xml.in.h:6959
 
21831
+msgid "Pasco"
 
21832
+msgstr ""
 
21833
+
 
21834
+#. A city in California in the United States
 
21835
+#: ../data/Locations.xml.in.h:6961
 
21836
+msgid "Paso Robles"
 
21837
+msgstr ""
 
21838
+
 
21839
+#. A city in Colombia
 
21840
+#: ../data/Locations.xml.in.h:6963
 
21841
+msgid "Pasto"
 
21842
+msgstr ""
 
21843
+
 
21844
+#. A city in New Jersey in the United States
 
21845
+#: ../data/Locations.xml.in.h:6965
 
21846
+msgid "Paterson"
 
21847
+msgstr ""
 
21848
+
 
21849
+#. A city in India
 
21850
+#: ../data/Locations.xml.in.h:6967
 
21851
+msgid "Patna"
 
21852
+msgstr ""
 
21853
+
 
21854
+#. A city in Louisiana in the United States
 
21855
+#: ../data/Locations.xml.in.h:6969
 
21856
+msgid "Patterson"
 
21857
+msgstr ""
 
21858
+
 
21859
+#. A city in Maryland in the United States
 
21860
+#: ../data/Locations.xml.in.h:6971
 
21861
+msgid "Patuxent"
 
21862
+msgstr ""
 
21863
+
 
21864
+#. A city in France
 
21865
+#: ../data/Locations.xml.in.h:6973
 
21866
+msgid "Pau"
 
21867
+msgstr ""
 
21868
+
 
21869
+#. A city in Northwest Territories in Canada
 
21870
+#: ../data/Locations.xml.in.h:6975
 
21871
+msgid "Paulatuk"
 
21872
+msgstr ""
 
21873
+
 
21874
+#. A city in Bahia in Brazil
 
21875
+#: ../data/Locations.xml.in.h:6977
 
21876
+msgid "Paulo Afonso"
 
21877
+msgstr ""
 
21878
+
 
21879
+#. A city in Oklahoma in the United States
 
21880
+#: ../data/Locations.xml.in.h:6979
 
21881
+msgid "Pauls Valley"
 
21882
+msgstr ""
 
21883
+
 
21884
+#. A city in Rhode Island in the United States
 
21885
+#: ../data/Locations.xml.in.h:6981
 
21886
+msgid "Pawtucket"
 
21887
+msgstr ""
 
21888
+
 
21889
+#. A city in Alaska in the United States
 
21890
+#: ../data/Locations.xml.in.h:6983
 
21891
+msgid "Paxson"
 
21892
+msgstr ""
 
21893
+
 
21894
+#. A city in Minnesota in the United States
 
21895
+#: ../data/Locations.xml.in.h:6985
 
21896
+msgid "Paynesville"
 
21897
+msgstr ""
 
21898
+
 
21899
+#. A city in Alberta in Canada
 
21900
+#: ../data/Locations.xml.in.h:6987
 
21901
+msgid "Peace River"
 
21902
+msgstr ""
 
21903
+
 
21904
+#. A city in Louisiana in the United States
 
21905
+#: ../data/Locations.xml.in.h:6989
 
21906
+msgid "Peason"
 
21907
+msgstr ""
 
21908
+
 
21909
+#. A city in Texas in the United States
 
21910
+#: ../data/Locations.xml.in.h:6991
 
21911
+msgid "Pecos"
 
21912
+msgstr ""
 
21913
+
 
21914
+#. A city in Indonesia
 
21915
+#: ../data/Locations.xml.in.h:6993
 
21916
+msgid "Pekanbaru"
 
21917
+msgstr ""
 
21918
+
 
21919
+#. A city in Iowa in the United States
 
21920
+#: ../data/Locations.xml.in.h:6995
 
21921
+msgid "Pella"
 
21922
+msgstr ""
 
21923
+
 
21924
+#. A city in Michigan in the United States
 
21925
+#: ../data/Locations.xml.in.h:6997
 
21926
+msgid "Pellston"
 
21927
+msgstr ""
 
21928
+
 
21929
+#. A city in Rio Grande do Sul in Brazil
 
21930
+#: ../data/Locations.xml.in.h:6999
 
21931
+msgid "Pelotas"
 
21932
+msgstr ""
 
21933
+
 
21934
+#. A city in Mozambique
 
21935
+#: ../data/Locations.xml.in.h:7001
 
21936
+msgid "Pemba"
 
21937
+msgstr ""
 
21938
+
 
21939
+#. A city in Wales in the United Kingdom
 
21940
+#: ../data/Locations.xml.in.h:7003
 
21941
+msgid "Pembrey"
 
21942
+msgstr ""
 
21943
+
 
21944
+#. A city in Florida in the United States
 
21945
+#: ../data/Locations.xml.in.h:7005
 
21946
+msgid "Pembroke Pines"
 
21947
+msgstr ""
 
21948
+
 
21949
+#. A city in Oregon in the United States
 
21950
+#: ../data/Locations.xml.in.h:7007
 
21951
+msgid "Pendleton"
 
21952
+msgstr ""
 
21953
+
 
21954
+#. A city in New York in the United States
 
21955
+#: ../data/Locations.xml.in.h:7009
 
21956
+msgid "Penn Yan"
 
21957
+msgstr ""
 
21958
+
 
21959
+#. A state/province/territory in United States
 
21960
+#: ../data/Locations.xml.in.h:7011
 
21961
+msgid "Pennsylvania"
 
21962
+msgstr ""
 
21963
+
 
21964
+#. A city in Florida in the United States
 
21965
+#: ../data/Locations.xml.in.h:7013
 
21966
+msgid "Pensacola"
 
21967
+msgstr ""
 
21968
+
 
21969
+#. A city in British Columbia in Canada
 
21970
+#: ../data/Locations.xml.in.h:7015
 
21971
+msgid "Penticton"
 
21972
+msgstr ""
 
21973
+
 
21974
+#. A city in Russia.
 
21975
+#. The local name in Russian is "Пенза".
 
21976
+#.
 
21977
+#: ../data/Locations.xml.in.h:7019
 
21978
+msgid "Penza"
 
21979
+msgstr ""
 
21980
+
 
21981
+#. A city in Colombia
 
21982
+#: ../data/Locations.xml.in.h:7021
 
21983
+msgid "Pereira"
 
21984
+msgstr ""
 
21985
+
 
21986
+#. A city in Russia.
 
21987
+#. The local name in Russian is "Пермь".
 
21988
+#.
 
21989
+#: ../data/Locations.xml.in.h:7025
 
21990
+msgid "Perm'"
 
21991
+msgstr ""
 
21992
+
 
21993
+#. A city in France
 
21994
+#: ../data/Locations.xml.in.h:7027
 
21995
+msgid "Perpignan"
 
21996
+msgstr ""
 
21997
+
 
21998
+#. A city in Florida in the United States
 
21999
+#: ../data/Locations.xml.in.h:7029
 
22000
+msgid "Perry"
 
22001
+msgstr ""
 
22002
+
 
22003
+#. A city in Texas in the United States
 
22004
+#: ../data/Locations.xml.in.h:7031
 
22005
+msgid "Perryton"
 
22006
+msgstr ""
 
22007
+
 
22008
+#. A city in Western Australia in Australia
 
22009
+#: ../data/Locations.xml.in.h:7033
 
22010
+msgid "Perth"
 
22011
+msgstr ""
 
22012
+
 
22013
+#. A city in Italy
 
22014
+#: ../data/Locations.xml.in.h:7035
 
22015
+msgid "Perugia"
 
22016
+msgstr ""
 
22017
+
 
22018
+#. A city in Italy
 
22019
+#: ../data/Locations.xml.in.h:7037
 
22020
+msgid "Pescara"
 
22021
+msgstr ""
 
22022
+
 
22023
+#. A city in Ontario in Canada
 
22024
+#: ../data/Locations.xml.in.h:7039
 
22025
+msgid "Petawawa"
 
22026
+msgstr ""
 
22027
+
 
22028
+#. A city in Ontario in Canada
 
22029
+#: ../data/Locations.xml.in.h:7041
 
22030
+msgid "Peterborough"
 
22031
+msgstr ""
 
22032
+
 
22033
+#. A city in Quebec in Canada
 
22034
+#: ../data/Locations.xml.in.h:7043
 
22035
+msgid "Petite-Rivière"
 
22036
+msgstr ""
 
22037
+
 
22038
+#. A city in Pernambuco in Brazil
 
22039
+#: ../data/Locations.xml.in.h:7045
 
22040
+msgid "Petrolina"
 
22041
+msgstr ""
 
22042
+
 
22043
+#. A city in Russia.
 
22044
+#. The local name in Russian is "Петропавловск-Камчатский".
 
22045
+#.
 
22046
+#: ../data/Locations.xml.in.h:7049
 
22047
+msgid "Petropavlovsk"
 
22048
+msgstr ""
 
22049
+
 
22050
+#. A city in Pennsylvania in the United States
 
22051
+#: ../data/Locations.xml.in.h:7051
 
22052
+msgid "Philadelphia"
 
22053
+msgstr ""
 
22054
+
 
22055
+#. A city in South Dakota in the United States
 
22056
+#: ../data/Locations.xml.in.h:7053
 
22057
+msgid "Philip"
 
22058
+msgstr ""
 
22059
+
 
22060
+#. PH - Philippines
 
22061
+#: ../data/Locations.xml.in.h:7055
 
22062
+msgid "Philippines"
 
22063
+msgstr ""
 
22064
+
 
22065
+#. A city in Wisconsin in the United States
 
22066
+#: ../data/Locations.xml.in.h:7057
 
22067
+msgid "Phillips"
 
22068
+msgstr ""
 
22069
+
 
22070
+#. The capital of Cambodia.
 
22071
+#. "Phnom Penh" is the traditional English name.
 
22072
+#. The local name in Khmer is "Phnum Penh".
 
22073
+#.
 
22074
+#: ../data/Locations.xml.in.h:7062
 
22075
+msgid "Phnom Penh"
 
22076
+msgstr ""
 
22077
+
 
22078
+#. A city in Arizona in the United States
 
22079
+#: ../data/Locations.xml.in.h:7064
 
22080
+msgid "Phoenix"
 
22081
+msgstr ""
 
22082
+
 
22083
+#. The time zone in the Phoenix Islands, one of the three
 
22084
+#. main island groups of Kiribati. This string is only used
 
22085
+#. in places where "Kiribati" is already clear from context.
 
22086
+#.
 
22087
+#: ../data/Locations.xml.in.h:7069
 
22088
+msgid "Phoenix Islands"
 
22089
+msgstr ""
 
22090
+
 
22091
+#. A city in Thailand
 
22092
+#: ../data/Locations.xml.in.h:7071
 
22093
+msgid "Phrae"
 
22094
+msgstr ""
 
22095
+
 
22096
+#. A city in Thailand
 
22097
+#: ../data/Locations.xml.in.h:7073
 
22098
+msgid "Phuket"
 
22099
+msgstr ""
 
22100
+
 
22101
+#. A city in Italy
 
22102
+#: ../data/Locations.xml.in.h:7075
 
22103
+msgid "Piacenza"
 
22104
+msgstr ""
 
22105
+
 
22106
+#. A city in Trinidad and Tobago
 
22107
+#: ../data/Locations.xml.in.h:7077
 
22108
+msgid "Piarco"
 
22109
+msgstr ""
 
22110
+
 
22111
+#. A state/province/territory in Brazil
 
22112
+#: ../data/Locations.xml.in.h:7079
 
22113
+msgid "Piauí"
 
22114
+msgstr ""
 
22115
+
 
22116
+#. A city in Coahuila in Mexico
 
22117
+#: ../data/Locations.xml.in.h:7081
 
22118
+msgid "Piedras Negras"
 
22119
+msgstr ""
 
22120
+
 
22121
+#. A city in South Dakota in the United States
 
22122
+#: ../data/Locations.xml.in.h:7083
 
22123
+msgid "Pierre"
 
22124
+msgstr ""
 
22125
+
 
22126
+#. A city in Slovakia
 
22127
+#: ../data/Locations.xml.in.h:7085
 
22128
+msgid "Piešťany"
 
22129
+msgstr ""
 
22130
+
 
22131
+#. A city in the Philippines
 
22132
+#: ../data/Locations.xml.in.h:7087
 
22133
+msgid "Pildira"
 
22134
+msgstr ""
 
22135
+
 
22136
+#. A city in Manitoba in Canada
 
22137
+#: ../data/Locations.xml.in.h:7089
 
22138
+msgid "Pilot Mound"
 
22139
+msgstr ""
 
22140
+
 
22141
+#. A city in Alberta in Canada
 
22142
+#: ../data/Locations.xml.in.h:7091
 
22143
+msgid "Pincher Creek"
 
22144
+msgstr ""
 
22145
+
 
22146
+#. A city in Arkansas in the United States
 
22147
+#: ../data/Locations.xml.in.h:7093
 
22148
+msgid "Pine Bluff"
 
22149
+msgstr ""
 
22150
+
 
22151
+#. A city in South Dakota in the United States
 
22152
+#: ../data/Locations.xml.in.h:7095
 
22153
+msgid "Pine Ridge"
 
22154
+msgstr ""
 
22155
+
 
22156
+#. A city in Minnesota in the United States
 
22157
+#: ../data/Locations.xml.in.h:7097
 
22158
+msgid "Pine River"
 
22159
+msgstr ""
 
22160
+
 
22161
+#. A city in Texas in the United States
 
22162
+#: ../data/Locations.xml.in.h:7099
 
22163
+msgid "Pine Springs"
 
22164
+msgstr ""
 
22165
+
 
22166
+#. A city in Wyoming in the United States
 
22167
+#: ../data/Locations.xml.in.h:7101
 
22168
+msgid "Pinedale"
 
22169
+msgstr ""
 
22170
+
 
22171
+#. A city in North Carolina in the United States
 
22172
+#: ../data/Locations.xml.in.h:7103
 
22173
+msgid "Pinehurst"
 
22174
+msgstr ""
 
22175
+
 
22176
+#. A city in Minnesota in the United States
 
22177
+#: ../data/Locations.xml.in.h:7105
 
22178
+msgid "Pipestone"
 
22179
+msgstr ""
 
22180
+
 
22181
+#. A city in São Paulo in Brazil
 
22182
+#: ../data/Locations.xml.in.h:7107
 
22183
+msgid "Piraçununga"
 
22184
+msgstr ""
 
22185
+
 
22186
+#. A city in Pará in Brazil
 
22187
+#: ../data/Locations.xml.in.h:7109
 
22188
+msgid "Piri Grande"
 
22189
+msgstr ""
 
22190
+
 
22191
+#. A city in Italy
 
22192
+#: ../data/Locations.xml.in.h:7111
 
22193
+msgid "Pisa"
 
22194
+msgstr ""
 
22195
+
 
22196
+#. A city in Peru
 
22197
+#: ../data/Locations.xml.in.h:7113
 
22198
+msgid "Pisco"
 
22199
+msgstr ""
 
22200
+
 
22201
+#. PN - Pitcairn, a British territory in the South Pacific
 
22202
+#: ../data/Locations.xml.in.h:7115
 
22203
+msgid "Pitcairn"
 
22204
+msgstr ""
 
22205
+
 
22206
+#. A city in British Columbia in Canada
 
22207
+#: ../data/Locations.xml.in.h:7117
 
22208
+msgid "Pitt Meadows"
 
22209
+msgstr ""
 
22210
+
 
22211
+#. A city in Pennsylvania in the United States
 
22212
+#: ../data/Locations.xml.in.h:7119
 
22213
+msgid "Pittsburgh"
 
22214
+msgstr ""
 
22215
+
 
22216
+#. A city in Oregon in the United States
 
22217
+#: ../data/Locations.xml.in.h:7121
 
22218
+msgid "Placer"
 
22219
+msgstr ""
 
22220
+
 
22221
+#. A city in Texas in the United States
 
22222
+#: ../data/Locations.xml.in.h:7123
 
22223
+msgid "Plainview"
 
22224
+msgstr ""
 
22225
+
 
22226
+#. A city in Mauritius
 
22227
+#: ../data/Locations.xml.in.h:7125
 
22228
+msgid "Plaisance"
 
22229
+msgstr ""
 
22230
+
 
22231
+#. A city in Texas in the United States
 
22232
+#: ../data/Locations.xml.in.h:7127
 
22233
+msgid "Plano"
 
22234
+msgstr ""
 
22235
+
 
22236
+#. A city in Alaska in the United States
 
22237
+#: ../data/Locations.xml.in.h:7129
 
22238
+msgid "Platinum"
 
22239
+msgstr ""
 
22240
+
 
22241
+#. A city in New York in the United States
 
22242
+#: ../data/Locations.xml.in.h:7131
 
22243
+msgid "Plattsburgh"
 
22244
+msgstr ""
 
22245
+
 
22246
+#. A city in Nebraska in the United States
 
22247
+#: ../data/Locations.xml.in.h:7133
 
22248
+msgid "Plattsmouth"
 
22249
+msgstr ""
 
22250
+
 
22251
+#. A city in Bulgaria
 
22252
+#: ../data/Locations.xml.in.h:7135
 
22253
+msgid "Plovdiv"
 
22254
+msgstr ""
 
22255
+
 
22256
+#. A city in Idaho in the United States
 
22257
+#: ../data/Locations.xml.in.h:7137
 
22258
+msgid "Pocatello"
 
22259
+msgstr ""
 
22260
+
 
22261
+#. A city in Montenegro
 
22262
+#: ../data/Locations.xml.in.h:7139
 
22263
+msgid "Podgorica"
 
22264
+msgstr ""
 
22265
+
 
22266
+#. A city in France
 
22267
+#: ../data/Locations.xml.in.h:7141
 
22268
+msgid "Poggiale"
 
22269
+msgstr ""
 
22270
+
 
22271
+#. A city in Virginia in the United States
 
22272
+#: ../data/Locations.xml.in.h:7143
 
22273
+msgid "Pohick"
 
22274
+msgstr ""
 
22275
+
 
22276
+#. One of two time zones in the Federated States of
 
22277
+#. Micronesia, including the islands of Pohnpei and Kosrae.
 
22278
+#. The string is only used in places where "Micronesia" is
 
22279
+#. already clear from context.
 
22280
+#.
 
22281
+#: ../data/Locations.xml.in.h:7149
 
22282
+msgid "Pohnpei / Kosrae"
 
22283
+msgstr ""
 
22284
+
 
22285
+#. A city in Alaska in the United States
 
22286
+#: ../data/Locations.xml.in.h:7151
 
22287
+msgid "Point Hope"
 
22288
+msgstr ""
 
22289
+
 
22290
+#. A city in Alaska in the United States
 
22291
+#: ../data/Locations.xml.in.h:7153
 
22292
+msgid "Point Lay"
 
22293
+msgstr ""
 
22294
+
 
22295
+#. A city in West Virginia in the United States
 
22296
+#: ../data/Locations.xml.in.h:7155
 
22297
+msgid "Point Pleasant"
 
22298
+msgstr ""
 
22299
+
 
22300
+#. A city in Saint Lucia
 
22301
+#: ../data/Locations.xml.in.h:7157
 
22302
+msgid "Pointe Sable"
 
22303
+msgstr ""
 
22304
+
 
22305
+#. A city in the Republic of the Congo
 
22306
+#: ../data/Locations.xml.in.h:7159
 
22307
+msgid "Pointe-Noire"
 
22308
+msgstr ""
 
22309
+
 
22310
+#. A city in France
 
22311
+#: ../data/Locations.xml.in.h:7161
 
22312
+msgid "Poitiers"
 
22313
+msgstr ""
 
22314
+
 
22315
+#. PL - Poland
 
22316
+#: ../data/Locations.xml.in.h:7163
 
22317
+msgid "Poland"
 
22318
+msgstr ""
 
22319
+
 
22320
+#. A city in California in the United States
 
22321
+#: ../data/Locations.xml.in.h:7165
 
22322
+msgid "Pomona"
 
22323
+msgstr ""
 
22324
+
 
22325
+#. A city in Florida in the United States
 
22326
+#: ../data/Locations.xml.in.h:7167
 
22327
+msgid "Pompano Beach"
 
22328
+msgstr ""
 
22329
+
 
22330
+#. A city in Oklahoma in the United States
 
22331
+#: ../data/Locations.xml.in.h:7169
 
22332
+msgid "Ponca City"
 
22333
+msgstr ""
 
22334
+
 
22335
+#. A city in Puerto Rico
 
22336
+#: ../data/Locations.xml.in.h:7171
 
22337
+msgid "Ponce"
 
22338
+msgstr ""
 
22339
+
 
22340
+#. A city in Nunavut in Canada
 
22341
+#: ../data/Locations.xml.in.h:7173
 
22342
+msgid "Pond Inlet"
 
22343
+msgstr ""
 
22344
+
 
22345
+#. A city in Portugal
 
22346
+#: ../data/Locations.xml.in.h:7175
 
22347
+msgid "Ponta Delgada"
 
22348
+msgstr ""
 
22349
+
 
22350
+#. A city in Mato Grosso do Sul in Brazil
 
22351
+#: ../data/Locations.xml.in.h:7177
 
22352
+msgid "Ponta Porã"
 
22353
+msgstr ""
 
22354
+
 
22355
+#. A city in Italy
 
22356
+#: ../data/Locations.xml.in.h:7179
 
22357
+msgid "Pontecagnano"
 
22358
+msgstr ""
 
22359
+
 
22360
+#. A city in Colombia
 
22361
+#: ../data/Locations.xml.in.h:7181
 
22362
+msgid "Popayán"
 
22363
+msgstr ""
 
22364
+
 
22365
+#. A city in Missouri in the United States
 
22366
+#: ../data/Locations.xml.in.h:7183
 
22367
+msgid "Poplar Bluff"
 
22368
+msgstr ""
 
22369
+
 
22370
+#. A city in Slovakia
 
22371
+#: ../data/Locations.xml.in.h:7185
 
22372
+msgid "Poprad"
 
22373
+msgstr ""
 
22374
+
 
22375
+#. A city in Finland
 
22376
+#: ../data/Locations.xml.in.h:7187
 
22377
+msgid "Pori"
 
22378
+msgstr ""
 
22379
+
 
22380
+#. A city in Alaska in the United States
 
22381
+#: ../data/Locations.xml.in.h:7189
 
22382
+msgid "Port Alexander"
 
22383
+msgstr ""
 
22384
+
 
22385
+#. A city in Alaska in the United States
 
22386
+#: ../data/Locations.xml.in.h:7191
 
22387
+msgid "Port Alsworth"
 
22388
+msgstr ""
 
22389
+
 
22390
+#. A city in Washington in the United States
 
22391
+#: ../data/Locations.xml.in.h:7193
 
22392
+msgid "Port Angeles"
 
22393
+msgstr ""
 
22394
+
 
22395
+#. A city in Texas in the United States
 
22396
+#: ../data/Locations.xml.in.h:7195
 
22397
+msgid "Port Aransas"
 
22398
+msgstr ""
 
22399
+
 
22400
+#. A city in South Africa
 
22401
+#: ../data/Locations.xml.in.h:7197
 
22402
+msgid "Port Elizabeth"
 
22403
+msgstr ""
 
22404
+
 
22405
+#. A city in Nigeria
 
22406
+#: ../data/Locations.xml.in.h:7199
 
22407
+msgid "Port Harcourt"
 
22408
+msgstr ""
 
22409
+
 
22410
+#. A city in British Columbia in Canada
 
22411
+#: ../data/Locations.xml.in.h:7201
 
22412
+msgid "Port Hardy"
 
22413
+msgstr ""
 
22414
+
 
22415
+#. A city in Alaska in the United States
 
22416
+#: ../data/Locations.xml.in.h:7203
 
22417
+msgid "Port Heiden"
 
22418
+msgstr ""
 
22419
+
 
22420
+#. A city in Michigan in the United States
 
22421
+#: ../data/Locations.xml.in.h:7205
 
22422
+msgid "Port Hope"
 
22423
+msgstr ""
 
22424
+
 
22425
+#. A city in Texas in the United States
 
22426
+#: ../data/Locations.xml.in.h:7207
 
22427
+msgid "Port Isabel"
 
22428
+msgstr ""
 
22429
+
 
22430
+#. A city in Texas in the United States
 
22431
+#: ../data/Locations.xml.in.h:7209
 
22432
+msgid "Port Lavaca"
 
22433
+msgstr ""
 
22434
+
 
22435
+#. The capital of Mauritius
 
22436
+#: ../data/Locations.xml.in.h:7211
 
22437
+msgid "Port Louis"
 
22438
+msgstr ""
 
22439
+
 
22440
+#. A city in Mauritius
 
22441
+#: ../data/Locations.xml.in.h:7213
 
22442
+msgid "Port Mathurin"
 
22443
+msgstr ""
 
22444
+
 
22445
+#. The capital of Papua New Guinea
 
22446
+#: ../data/Locations.xml.in.h:7215
 
22447
+msgid "Port Moresby"
 
22448
+msgstr ""
 
22449
+
 
22450
+#. A city in British Columbia in Canada
 
22451
+#: ../data/Locations.xml.in.h:7217
 
22452
+msgid "Port Simpson"
 
22453
+msgstr ""
 
22454
+
 
22455
+#. A city in Ontario in Canada
 
22456
+#: ../data/Locations.xml.in.h:7219
 
22457
+msgid "Port Weller"
 
22458
+msgstr ""
 
22459
+
 
22460
+#. A city in Gabon
 
22461
+#: ../data/Locations.xml.in.h:7221
 
22462
+msgid "Port-Gentil"
 
22463
+msgstr ""
 
22464
+
 
22465
+#. A city in Quebec in Canada
 
22466
+#: ../data/Locations.xml.in.h:7223
 
22467
+msgid "Port-Menier"
 
22468
+msgstr ""
 
22469
+
 
22470
+#. Capital of Haiti
 
22471
+#: ../data/Locations.xml.in.h:7225
 
22472
+msgid "Port-au-Prince"
 
22473
+msgstr ""
 
22474
+
 
22475
+#. The capital of Trinidad and Tobago
 
22476
+#: ../data/Locations.xml.in.h:7227
 
22477
+msgid "Port-of-Spain"
 
22478
+msgstr ""
 
22479
+
 
22480
+#. A city in California in the United States
 
22481
+#: ../data/Locations.xml.in.h:7229
 
22482
+msgid "Porterville"
 
22483
+msgstr ""
 
22484
+
 
22485
+#. A city in Quebec in Canada
 
22486
+#: ../data/Locations.xml.in.h:7231
 
22487
+msgid "Portneuf"
 
22488
+msgstr ""
 
22489
+
 
22490
+#. A city in Portugal
 
22491
+#: ../data/Locations.xml.in.h:7233
 
22492
+msgid "Porto"
 
22493
+msgstr ""
 
22494
+
 
22495
+#. A city in Rio Grande do Sul in Brazil
 
22496
+#: ../data/Locations.xml.in.h:7235
 
22497
+msgid "Porto Alegre"
 
22498
+msgstr ""
 
22499
+
 
22500
+#. A city in Portugal
 
22501
+#: ../data/Locations.xml.in.h:7237
 
22502
+msgid "Porto Santo"
 
22503
+msgstr ""
 
22504
+
 
22505
+#. The capital of Benin
 
22506
+#: ../data/Locations.xml.in.h:7239
 
22507
+msgid "Porto-Novo"
 
22508
+msgstr ""
 
22509
+
 
22510
+#. A city in Slovenia
 
22511
+#: ../data/Locations.xml.in.h:7241
 
22512
+msgid "Portorož"
 
22513
+msgstr ""
 
22514
+
 
22515
+#. PT - Portugal
 
22516
+#: ../data/Locations.xml.in.h:7243
 
22517
+msgid "Portugal"
 
22518
+msgstr ""
 
22519
+
 
22520
+#. A city in Argentina
 
22521
+#: ../data/Locations.xml.in.h:7245
 
22522
+msgid "Posadas"
 
22523
+msgstr ""
 
22524
+
 
22525
+#. A city in Quebec in Canada
 
22526
+#: ../data/Locations.xml.in.h:7247
 
22527
+msgid "Poste-de-la-Baleine"
 
22528
+msgstr ""
 
22529
+
 
22530
+#. A city in South Africa
 
22531
+#: ../data/Locations.xml.in.h:7249
 
22532
+msgid "Potchefstroom"
 
22533
+msgstr ""
 
22534
+
 
22535
+#. A city in Oklahoma in the United States
 
22536
+#: ../data/Locations.xml.in.h:7251
 
22537
+msgid "Poteau"
 
22538
+msgstr ""
 
22539
+
 
22540
+#. A city in Bolivia
 
22541
+#: ../data/Locations.xml.in.h:7253
 
22542
+msgid "Potosí"
 
22543
+msgstr ""
 
22544
+
 
22545
+#. A city in Pennsylvania in the United States
 
22546
+#: ../data/Locations.xml.in.h:7255
 
22547
+msgid "Pottstown"
 
22548
+msgstr ""
 
22549
+
 
22550
+#. A city in New York in the United States
 
22551
+#: ../data/Locations.xml.in.h:7257
 
22552
+msgid "Poughkeepsie"
 
22553
+msgstr ""
 
22554
+
 
22555
+#. A city in British Columbia in Canada
 
22556
+#: ../data/Locations.xml.in.h:7259
 
22557
+msgid "Powell River"
 
22558
+msgstr ""
 
22559
+
 
22560
+#. A city in Veracruz in Mexico.
 
22561
+#. One of several cities in Mexico called "Poza Rica".
 
22562
+#.
 
22563
+#: ../data/Locations.xml.in.h:7263
 
22564
+msgid "Poza Rica de Hidalgo"
 
22565
+msgstr ""
 
22566
+
 
22567
+#. A city in Poland
 
22568
+#: ../data/Locations.xml.in.h:7265
 
22569
+msgid "Poznań"
 
22570
+msgstr ""
 
22571
+
 
22572
+#. A city in Minas Gerais in Brazil
 
22573
+#: ../data/Locations.xml.in.h:7267
 
22574
+msgid "Poços de Caldas"
 
22575
+msgstr ""
 
22576
+
 
22577
+#. The capital of the Czech Republic.
 
22578
+#. "Prague" is the traditional English name.
 
22579
+#. The local name in Czech is "Praha".
 
22580
+#.
 
22581
+#: ../data/Locations.xml.in.h:7272
 
22582
+msgid "Prague"
 
22583
+msgstr ""
 
22584
+
 
22585
+#. A city in Wisconsin in the United States
 
22586
+#: ../data/Locations.xml.in.h:7274
 
22587
+msgid "Prairie du Chien"
 
22588
+msgstr ""
 
22589
+
 
22590
+#. A city in Italy
 
22591
+#: ../data/Locations.xml.in.h:7276
 
22592
+msgid "Pratica di Mare"
 
22593
+msgstr ""
 
22594
+
 
22595
+#. A city in Kansas in the United States
 
22596
+#: ../data/Locations.xml.in.h:7278
 
22597
+msgid "Pratt"
 
22598
+msgstr ""
 
22599
+
 
22600
+#. A city in Cape Verde
 
22601
+#: ../data/Locations.xml.in.h:7280
 
22602
+msgid "Preguiça"
 
22603
+msgstr ""
 
22604
+
 
22605
+#. A city in Arizona in the United States
 
22606
+#: ../data/Locations.xml.in.h:7282
 
22607
+msgid "Prescott"
 
22608
+msgstr ""
 
22609
+
 
22610
+#. A city in São Paulo in Brazil
 
22611
+#: ../data/Locations.xml.in.h:7284
 
22612
+msgid "Presidente Prudente"
 
22613
+msgstr ""
 
22614
+
 
22615
+#. A city in Maine in the United States
 
22616
+#: ../data/Locations.xml.in.h:7286
 
22617
+msgid "Presque Isle"
 
22618
+msgstr ""
 
22619
+
 
22620
+#. A city in Minnesota in the United States
 
22621
+#: ../data/Locations.xml.in.h:7288
 
22622
+msgid "Preston"
 
22623
+msgstr ""
 
22624
+
 
22625
+#. A city in Scotland in the United Kingdom
 
22626
+#: ../data/Locations.xml.in.h:7290
 
22627
+msgid "Prestwick"
 
22628
+msgstr ""
 
22629
+
 
22630
+#. The capital of South Africa
 
22631
+#: ../data/Locations.xml.in.h:7292
 
22632
+msgid "Pretoria"
 
22633
+msgstr ""
 
22634
+
 
22635
+#. A city in Utah in the United States
 
22636
+#: ../data/Locations.xml.in.h:7294
 
22637
+msgid "Price"
 
22638
+msgstr ""
 
22639
+
 
22640
+#. A city in Slovakia
 
22641
+#: ../data/Locations.xml.in.h:7296
 
22642
+msgid "Prievidza"
 
22643
+msgstr ""
 
22644
+
 
22645
+#. A city in Saskatchewan in Canada
 
22646
+#: ../data/Locations.xml.in.h:7298
 
22647
+msgid "Prince Albert"
 
22648
+msgstr ""
 
22649
+
 
22650
+#. A state/province/territory in Canada
 
22651
+#: ../data/Locations.xml.in.h:7300
 
22652
+msgid "Prince Edward Island"
 
22653
+msgstr ""
 
22654
+
 
22655
+#. A city in British Columbia in Canada
 
22656
+#: ../data/Locations.xml.in.h:7302
 
22657
+msgid "Prince George"
 
22658
+msgstr ""
 
22659
+
 
22660
+#. A city in British Columbia in Canada
 
22661
+#: ../data/Locations.xml.in.h:7304
 
22662
+msgid "Prince Rupert"
 
22663
+msgstr ""
 
22664
+
 
22665
+#. A city in Rhode Island in the United States
 
22666
+#: ../data/Locations.xml.in.h:7306
 
22667
+msgid "Providence"
 
22668
+msgstr ""
 
22669
+
 
22670
+#. A city in Massachusetts in the United States
 
22671
+#: ../data/Locations.xml.in.h:7308
 
22672
+msgid "Provincetown"
 
22673
+msgstr ""
 
22674
+
 
22675
+#. A city in Utah in the United States
 
22676
+#: ../data/Locations.xml.in.h:7310
 
22677
+msgid "Provo"
 
22678
+msgstr ""
 
22679
+
 
22680
+#. A city in Peru
 
22681
+#: ../data/Locations.xml.in.h:7312
 
22682
+msgid "Pucallpa"
 
22683
+msgstr ""
 
22684
+
 
22685
+#. A city in Colorado in the United States
 
22686
+#: ../data/Locations.xml.in.h:7314
 
22687
+msgid "Pueblo"
 
22688
+msgstr ""
 
22689
+
 
22690
+#. A city in Venezuela
 
22691
+#: ../data/Locations.xml.in.h:7316
 
22692
+msgid "Puerto Ayacucho"
 
22693
+msgstr ""
 
22694
+
 
22695
+#. A city in Guatemala
 
22696
+#: ../data/Locations.xml.in.h:7318
 
22697
+msgid "Puerto Barrios"
 
22698
+msgstr ""
 
22699
+
 
22700
+#. A city in Venezuela
 
22701
+#: ../data/Locations.xml.in.h:7320
 
22702
+msgid "Puerto Borburata"
 
22703
+msgstr ""
 
22704
+
 
22705
+#. A city in Nicaragua
 
22706
+#: ../data/Locations.xml.in.h:7322
 
22707
+msgid "Puerto Cabezas"
 
22708
+msgstr ""
 
22709
+
 
22710
+#. A city in Oaxaca in Mexico
 
22711
+#: ../data/Locations.xml.in.h:7324
 
22712
+msgid "Puerto Escondido"
 
22713
+msgstr ""
 
22714
+
 
22715
+#. A city in Argentina
 
22716
+#: ../data/Locations.xml.in.h:7326
 
22717
+msgid "Puerto Iguazú"
 
22718
+msgstr ""
 
22719
+
 
22720
+#. A city in Honduras
 
22721
+#: ../data/Locations.xml.in.h:7328
 
22722
+msgid "Puerto Lempira"
 
22723
+msgstr ""
 
22724
+
 
22725
+#. A city in Costa Rica
 
22726
+#: ../data/Locations.xml.in.h:7330
 
22727
+msgid "Puerto Limón"
 
22728
+msgstr ""
 
22729
+
 
22730
+#. A city in Peru
 
22731
+#: ../data/Locations.xml.in.h:7332
 
22732
+msgid "Puerto Maldonado"
 
22733
+msgstr ""
 
22734
+
 
22735
+#. A city in Chile
 
22736
+#: ../data/Locations.xml.in.h:7334
 
22737
+msgid "Puerto Montt"
 
22738
+msgstr ""
 
22739
+
 
22740
+#. A city in the Dominican Republic
 
22741
+#: ../data/Locations.xml.in.h:7336
 
22742
+msgid "Puerto Plata"
 
22743
+msgstr ""
 
22744
+
 
22745
+#. PR - Puerto Rico, a territory of the United States in the
 
22746
+#. Caribbean.
 
22747
+#.
 
22748
+#: ../data/Locations.xml.in.h:7340
 
22749
+msgid "Puerto Rico"
 
22750
+msgstr ""
 
22751
+
 
22752
+#. A city in Guatemala
 
22753
+#: ../data/Locations.xml.in.h:7342
 
22754
+msgid "Puerto San José"
 
22755
+msgstr ""
 
22756
+
 
22757
+#. A city in Bolivia
 
22758
+#: ../data/Locations.xml.in.h:7344
 
22759
+msgid "Puerto Suárez"
 
22760
+msgstr ""
 
22761
+
 
22762
+#. A city in Jalisco in Mexico
 
22763
+#: ../data/Locations.xml.in.h:7346
 
22764
+msgid "Puerto Vallarta"
 
22765
+msgstr ""
 
22766
+
 
22767
+#. A city in India
 
22768
+#: ../data/Locations.xml.in.h:7348
 
22769
+msgid "Pune"
 
22770
+msgstr ""
 
22771
+
 
22772
+#. A city in Chile
 
22773
+#: ../data/Locations.xml.in.h:7350
 
22774
+msgid "Punta Arenas"
 
22775
+msgstr ""
 
22776
+
 
22777
+#. A city in Florida in the United States
 
22778
+#: ../data/Locations.xml.in.h:7352
 
22779
+msgid "Punta Gorda"
 
22780
+msgstr ""
 
22781
+
 
22782
+#. A city in South Korea
 
22783
+#: ../data/Locations.xml.in.h:7354
 
22784
+msgid "Pusan"
 
22785
+msgstr ""
 
22786
+
 
22787
+#. A city in Quebec in Canada
 
22788
+#: ../data/Locations.xml.in.h:7356
 
22789
+msgid "Puvirnituq"
 
22790
+msgstr ""
 
22791
+
 
22792
+#. A city in Hungary
 
22793
+#: ../data/Locations.xml.in.h:7358
 
22794
+msgid "Pápa"
 
22795
+msgstr ""
 
22796
+
 
22797
+#. A city in Greece
 
22798
+#: ../data/Locations.xml.in.h:7360
 
22799
+msgid "Páros"
 
22800
+msgstr ""
 
22801
+
 
22802
+#. A city in Estonia
 
22803
+#: ../data/Locations.xml.in.h:7362
 
22804
+msgid "Pärnu"
 
22805
+msgstr ""
 
22806
+
 
22807
+#. A city in Hungary
 
22808
+#: ../data/Locations.xml.in.h:7364
 
22809
+msgid "Pécs"
 
22810
+msgstr ""
 
22811
+
 
22812
+#. A city in Bahia in Brazil
 
22813
+#: ../data/Locations.xml.in.h:7366
 
22814
+msgid "Pôrto Seguro"
 
22815
+msgstr ""
 
22816
+
 
22817
+#. A city in Rondônia in Brazil
 
22818
+#: ../data/Locations.xml.in.h:7368
 
22819
+msgid "Pôrto Velho"
 
22820
+msgstr ""
 
22821
+
 
22822
+#. A city in Saudi Arabia
 
22823
+#: ../data/Locations.xml.in.h:7370
 
22824
+msgid "Qal'at Bishah"
 
22825
+msgstr ""
 
22826
+
 
22827
+#. A city in Saudi Arabia
 
22828
+#: ../data/Locations.xml.in.h:7372
 
22829
+msgid "Qara"
 
22830
+msgstr ""
 
22831
+
 
22832
+#. A city in Kazakhstan.
 
22833
+#. The local name in Russian is "Karaganda".
 
22834
+#.
 
22835
+#: ../data/Locations.xml.in.h:7376
 
22836
+msgid "Qaraghandy"
 
22837
+msgstr ""
 
22838
+
 
22839
+#. QA - Qatar
 
22840
+#: ../data/Locations.xml.in.h:7378
 
22841
+msgid "Qatar"
 
22842
+msgstr ""
 
22843
+
 
22844
+#. A city in Iran.
 
22845
+#. The name is also written "قزوین".
 
22846
+#.
 
22847
+#: ../data/Locations.xml.in.h:7382
 
22848
+msgid "Qazvin"
 
22849
+msgstr ""
 
22850
+
 
22851
+#. A city in Nunavut in Canada
 
22852
+#: ../data/Locations.xml.in.h:7384
 
22853
+msgid "Qikiqtarjuaq"
 
22854
+msgstr ""
 
22855
+
 
22856
+#. A city in Shandong in China
 
22857
+#: ../data/Locations.xml.in.h:7386
 
22858
+msgid "Qingdao"
 
22859
+msgstr ""
 
22860
+
 
22861
+#. A city in Kazakhstan.
 
22862
+#. The local name in Russian is "Kostanay".
 
22863
+#.
 
22864
+#: ../data/Locations.xml.in.h:7390
 
22865
+msgid "Qostanay"
 
22866
+msgstr ""
 
22867
+
 
22868
+#. A city in Pennsylvania in the United States
 
22869
+#: ../data/Locations.xml.in.h:7392
 
22870
+msgid "Quakertown"
 
22871
+msgstr ""
 
22872
+
 
22873
+#. A city in Virginia in the United States
 
22874
+#: ../data/Locations.xml.in.h:7394
 
22875
+msgid "Quantico"
 
22876
+msgstr ""
 
22877
+
 
22878
+#. A city in British Columbia in Canada
 
22879
+#: ../data/Locations.xml.in.h:7396
 
22880
+msgid "Queen Charlotte"
 
22881
+msgstr ""
 
22882
+
 
22883
+#. A state/province/territory in Australia
 
22884
+#: ../data/Locations.xml.in.h:7398
 
22885
+msgid "Queensland"
 
22886
+msgstr ""
 
22887
+
 
22888
+#. A city in Mozambique
 
22889
+#: ../data/Locations.xml.in.h:7400
 
22890
+msgid "Quelimane"
 
22891
+msgstr ""
 
22892
+
 
22893
+#. A city in British Columbia in Canada
 
22894
+#: ../data/Locations.xml.in.h:7402
 
22895
+msgid "Quesnel"
 
22896
+msgstr ""
 
22897
+
 
22898
+#. A city in Colombia
 
22899
+#: ../data/Locations.xml.in.h:7404
 
22900
+msgid "Quibdó"
 
22901
+msgstr ""
 
22902
+
 
22903
+#. A city in Washington in the United States
 
22904
+#: ../data/Locations.xml.in.h:7406
 
22905
+msgid "Quillayute"
 
22906
+msgstr ""
 
22907
+
 
22908
+#. A city in France
 
22909
+#: ../data/Locations.xml.in.h:7408
 
22910
+msgid "Quimper"
 
22911
+msgstr ""
 
22912
+
 
22913
+#. A city in Illinois in the United States
 
22914
+#: ../data/Locations.xml.in.h:7410
 
22915
+msgid "Quincy"
 
22916
+msgstr ""
 
22917
+
 
22918
+#. A state/province/territory in Mexico
 
22919
+#: ../data/Locations.xml.in.h:7412
 
22920
+msgid "Quintana Roo"
 
22921
+msgstr ""
 
22922
+
 
22923
+#. The capital of Ecuador
 
22924
+#: ../data/Locations.xml.in.h:7414
 
22925
+msgid "Quito"
 
22926
+msgstr ""
 
22927
+
 
22928
+#. A city in Tunisia
 
22929
+#: ../data/Locations.xml.in.h:7416
 
22930
+msgid "Qulaybiyah"
 
22931
+msgstr ""
 
22932
+
 
22933
+#. A city in Kazakhstan.
 
22934
+#. The local name in Russian is "Kyzylorda".
 
22935
+#.
 
22936
+#: ../data/Locations.xml.in.h:7420
 
22937
+msgid "Qyzylorda"
 
22938
+msgstr ""
 
22939
+
 
22940
+#. A city in the United Arab Emirates
 
22941
+#: ../data/Locations.xml.in.h:7422
 
22942
+msgid "Ra's al Khaymah"
 
22943
+msgstr ""
 
22944
+
 
22945
+#. The capital of Morocco
 
22946
+#: ../data/Locations.xml.in.h:7424
 
22947
+msgid "Rabat"
 
22948
+msgstr ""
 
22949
+
 
22950
+#. A city in Wisconsin in the United States
 
22951
+#: ../data/Locations.xml.in.h:7426
 
22952
+msgid "Racine"
 
22953
+msgstr ""
 
22954
+
 
22955
+#. A city in Quebec in Canada
 
22956
+#: ../data/Locations.xml.in.h:7428
 
22957
+msgid "Radisson"
 
22958
+msgstr ""
 
22959
+
 
22960
+#. A city in Puerto Rico
 
22961
+#: ../data/Locations.xml.in.h:7430
 
22962
+msgid "Rafael Hernandez"
 
22963
+msgstr ""
 
22964
+
 
22965
+#. A city in Saudi Arabia
 
22966
+#: ../data/Locations.xml.in.h:7432
 
22967
+msgid "Rafha"
 
22968
+msgstr ""
 
22969
+
 
22970
+#. A city in North Carolina in the United States
 
22971
+#: ../data/Locations.xml.in.h:7434
 
22972
+msgid "Raleigh"
 
22973
+msgstr ""
 
22974
+
 
22975
+#. A city in California in the United States
 
22976
+#: ../data/Locations.xml.in.h:7436
 
22977
+msgid "Ramona"
 
22978
+msgstr ""
 
22979
+
 
22980
+#. A city in Israel
 
22981
+#: ../data/Locations.xml.in.h:7438
 
22982
+msgid "Ramot Remez"
 
22983
+msgstr ""
 
22984
+
 
22985
+#. A city in Rhineland-Palatinate in Germany
 
22986
+#: ../data/Locations.xml.in.h:7440
 
22987
+msgid "Ramstein"
 
22988
+msgstr ""
 
22989
+
 
22990
+#. A city in California in the United States
 
22991
+#: ../data/Locations.xml.in.h:7442
 
22992
+msgid "Rancho Cucamonga"
 
22993
+msgstr ""
 
22994
+
 
22995
+#. The capital of Myanmar.
 
22996
+#. "Rangoon" is the traditional English name.
 
22997
+#. The local name in Burmese is "Yangon".
 
22998
+#.
 
22999
+#: ../data/Locations.xml.in.h:7447
 
23000
+msgid "Rangoon"
 
23001
+msgstr ""
 
23002
+
 
23003
+#. A city in Nunavut in Canada
 
23004
+#: ../data/Locations.xml.in.h:7449
 
23005
+msgid "Rankin Inlet"
 
23006
+msgstr ""
 
23007
+
 
23008
+#. A city in Thailand
 
23009
+#: ../data/Locations.xml.in.h:7451
 
23010
+msgid "Ranong"
 
23011
+msgstr ""
 
23012
+
 
23013
+#. A city in Illinois in the United States
 
23014
+#: ../data/Locations.xml.in.h:7453
 
23015
+msgid "Rantoul"
 
23016
+msgstr ""
 
23017
+
 
23018
+#. A city in South Dakota in the United States
 
23019
+#: ../data/Locations.xml.in.h:7455
 
23020
+msgid "Rapid City"
 
23021
+msgstr ""
 
23022
+
 
23023
+#. A city in Iran
 
23024
+#: ../data/Locations.xml.in.h:7457
 
23025
+msgid "Rasht"
 
23026
+msgstr ""
 
23027
+
 
23028
+#. A city in New Mexico in the United States
 
23029
+#: ../data/Locations.xml.in.h:7459
 
23030
+msgid "Raton"
 
23031
+msgstr ""
 
23032
+
 
23033
+#. A city in Wyoming in the United States
 
23034
+#: ../data/Locations.xml.in.h:7461
 
23035
+msgid "Rawlins"
 
23036
+msgstr ""
 
23037
+
 
23038
+#. A city in Thailand
 
23039
+#: ../data/Locations.xml.in.h:7463
 
23040
+msgid "Rayong"
 
23041
+msgstr ""
 
23042
+
 
23043
+#. A city in Pennsylvania in the United States
 
23044
+#: ../data/Locations.xml.in.h:7465
 
23045
+msgid "Reading"
 
23046
+msgstr ""
 
23047
+
 
23048
+#. A city in Pernambuco in Brazil
 
23049
+#: ../data/Locations.xml.in.h:7467
 
23050
+msgid "Recife"
 
23051
+msgstr ""
 
23052
+
 
23053
+#. A city in Argentina
 
23054
+#: ../data/Locations.xml.in.h:7469
 
23055
+msgid "Reconquista"
 
23056
+msgstr ""
 
23057
+
 
23058
+#. A city in the Cayman Islands
 
23059
+#: ../data/Locations.xml.in.h:7471
 
23060
+msgid "Red Bay Estate"
 
23061
+msgstr ""
 
23062
+
 
23063
+#. A city in California in the United States
 
23064
+#: ../data/Locations.xml.in.h:7473
 
23065
+msgid "Red Bluff"
 
23066
+msgstr ""
 
23067
+
 
23068
+#. A city in Alberta in Canada
 
23069
+#: ../data/Locations.xml.in.h:7475
 
23070
+msgid "Red Deer"
 
23071
+msgstr ""
 
23072
+
 
23073
+#. A city in Ontario in Canada
 
23074
+#: ../data/Locations.xml.in.h:7477
 
23075
+msgid "Red Lake"
 
23076
+msgstr ""
 
23077
+
 
23078
+#. A city in Iowa in the United States
 
23079
+#: ../data/Locations.xml.in.h:7479
 
23080
+msgid "Red Oak"
 
23081
+msgstr ""
 
23082
+
 
23083
+#. A city in Minnesota in the United States
 
23084
+#: ../data/Locations.xml.in.h:7481
 
23085
+msgid "Red Wing"
 
23086
+msgstr ""
 
23087
+
 
23088
+#. A city in California in the United States
 
23089
+#: ../data/Locations.xml.in.h:7483
 
23090
+msgid "Redding"
 
23091
+msgstr ""
 
23092
+
 
23093
+#. A city in Oregon in the United States
 
23094
+#: ../data/Locations.xml.in.h:7485
 
23095
+msgid "Redmond"
 
23096
+msgstr ""
 
23097
+
 
23098
+#. A city in Minnesota in the United States
 
23099
+#: ../data/Locations.xml.in.h:7487
 
23100
+msgid "Redwood Falls"
 
23101
+msgstr ""
 
23102
+
 
23103
+#. A city in Italy
 
23104
+#: ../data/Locations.xml.in.h:7489
 
23105
+msgid "Reggio di Calabria"
 
23106
+msgstr ""
 
23107
+
 
23108
+#. A city in Saskatchewan in Canada
 
23109
+#: ../data/Locations.xml.in.h:7491
 
23110
+msgid "Regina"
 
23111
+msgstr ""
 
23112
+
 
23113
+#: ../data/Locations.xml.in.h:7492
 
23114
+msgctxt "Region"
 
23115
+msgid "Antarctica"
 
23116
+msgstr ""
 
23117
+
 
23118
+#. FIXME: rename this to Atlantic Ocean
 
23119
+#: ../data/Locations.xml.in.h:7494
 
23120
+msgctxt "Region"
 
23121
+msgid "Atlantic"
 
23122
+msgstr ""
 
23123
+
 
23124
+#. A city in France
 
23125
+#: ../data/Locations.xml.in.h:7496
 
23126
+msgid "Reims"
 
23127
+msgstr ""
 
23128
+
 
23129
+#. A city in Tunisia
 
23130
+#: ../data/Locations.xml.in.h:7498
 
23131
+msgid "Remada"
 
23132
+msgstr ""
 
23133
+
 
23134
+#. A city in France
 
23135
+#: ../data/Locations.xml.in.h:7500
 
23136
+msgid "Rennes"
 
23137
+msgstr ""
 
23138
+
 
23139
+#. A city in Nevada in the United States
 
23140
+#: ../data/Locations.xml.in.h:7502
 
23141
+msgid "Reno"
 
23142
+msgstr ""
 
23143
+
 
23144
+#. A city in Washington in the United States
 
23145
+#: ../data/Locations.xml.in.h:7504
 
23146
+msgid "Renton"
 
23147
+msgstr ""
 
23148
+
 
23149
+#. A city in Nunavut in Canada
 
23150
+#: ../data/Locations.xml.in.h:7506
 
23151
+msgid "Repulse Bay"
 
23152
+msgstr ""
 
23153
+
 
23154
+#. A city in Italy
 
23155
+#: ../data/Locations.xml.in.h:7508
 
23156
+msgid "Resia"
 
23157
+msgstr ""
 
23158
+
 
23159
+#. A city in Argentina
 
23160
+#: ../data/Locations.xml.in.h:7510
 
23161
+msgid "Resistencia"
 
23162
+msgstr ""
 
23163
+
 
23164
+#. A city in Nunavut in Canada
 
23165
+#: ../data/Locations.xml.in.h:7512
 
23166
+msgid "Resolute"
 
23167
+msgstr ""
 
23168
+
 
23169
+#. A city in Guatemala
 
23170
+#: ../data/Locations.xml.in.h:7514
 
23171
+msgid "Retalhuleu"
 
23172
+msgstr ""
 
23173
+
 
23174
+#. A city in Spain
 
23175
+#: ../data/Locations.xml.in.h:7516
 
23176
+msgid "Reus"
 
23177
+msgstr ""
 
23178
+
 
23179
+#. A city in British Columbia in Canada
 
23180
+#: ../data/Locations.xml.in.h:7518
 
23181
+msgid "Revelstoke"
 
23182
+msgstr ""
 
23183
+
 
23184
+#. A city in Idaho in the United States
 
23185
+#: ../data/Locations.xml.in.h:7520
 
23186
+msgid "Rexburg"
 
23187
+msgstr ""
 
23188
+
 
23189
+#. A city in Bolivia
 
23190
+#: ../data/Locations.xml.in.h:7522
 
23191
+msgid "Reyes"
 
23192
+msgstr ""
 
23193
+
 
23194
+#. The capital of Iceland
 
23195
+#: ../data/Locations.xml.in.h:7524
 
23196
+msgid "Reykjavík"
 
23197
+msgstr ""
 
23198
+
 
23199
+#. A city in Tamaulipas in Mexico
 
23200
+#: ../data/Locations.xml.in.h:7526
 
23201
+msgid "Reynosa"
 
23202
+msgstr ""
 
23203
+
 
23204
+#. A city in North Rhine-Westphalia in Germany
 
23205
+#: ../data/Locations.xml.in.h:7528
 
23206
+msgid "Rheine"
 
23207
+msgstr ""
 
23208
+
 
23209
+#. A state in Germany.  The local name is "Rheinland-Pfalz".
 
23210
+#. Please use that unless you know that it has a different
 
23211
+#. name in your language.
 
23212
+#.
 
23213
+#: ../data/Locations.xml.in.h:7533
 
23214
+msgid "Rhineland-Palatinate"
 
23215
+msgstr ""
 
23216
+
 
23217
+#. A city in Wisconsin in the United States
 
23218
+#: ../data/Locations.xml.in.h:7535
 
23219
+msgid "Rhinelander"
 
23220
+msgstr ""
 
23221
+
 
23222
+#. A state/province/territory in United States
 
23223
+#: ../data/Locations.xml.in.h:7537
 
23224
+msgid "Rhode Island"
 
23225
+msgstr ""
 
23226
+
 
23227
+#. A city in Bolivia
 
23228
+#: ../data/Locations.xml.in.h:7539
 
23229
+msgid "Riberalta"
 
23230
+msgstr ""
 
23231
+
 
23232
+#. A city in Wisconsin in the United States
 
23233
+#: ../data/Locations.xml.in.h:7541
 
23234
+msgid "Rice Lake"
 
23235
+msgstr ""
 
23236
+
 
23237
+#. A city in Italy
 
23238
+#: ../data/Locations.xml.in.h:7543
 
23239
+msgid "Rieti"
 
23240
+msgstr ""
 
23241
+
 
23242
+#. A city in Colorado in the United States
 
23243
+#: ../data/Locations.xml.in.h:7545
 
23244
+msgid "Rifle"
 
23245
+msgstr ""
 
23246
+
 
23247
+#. A city in Croatia
 
23248
+#: ../data/Locations.xml.in.h:7547
 
23249
+msgid "Rijeka"
 
23250
+msgstr ""
 
23251
+
 
23252
+#. A city in Italy
 
23253
+#: ../data/Locations.xml.in.h:7549
 
23254
+msgid "Rimini"
 
23255
+msgstr ""
 
23256
+
 
23257
+#. A city in Acre in Brazil
 
23258
+#: ../data/Locations.xml.in.h:7551
 
23259
+msgid "Rio Branco"
 
23260
+msgstr ""
 
23261
+
 
23262
+#. A state/province/territory in Brazil
 
23263
+#: ../data/Locations.xml.in.h:7553
 
23264
+msgid "Rio Grande do Norte"
 
23265
+msgstr ""
 
23266
+
 
23267
+#. A state/province/territory in Brazil
 
23268
+#: ../data/Locations.xml.in.h:7555
 
23269
+msgid "Rio Grande do Sul"
 
23270
+msgstr ""
 
23271
+
 
23272
+#. A city in Colombia
 
23273
+#: ../data/Locations.xml.in.h:7557
 
23274
+msgid "Riohacha"
 
23275
+msgstr ""
 
23276
+
 
23277
+#. A city in Colombia
 
23278
+#: ../data/Locations.xml.in.h:7559
 
23279
+msgid "Rionegro"
 
23280
+msgstr ""
 
23281
+
 
23282
+#. A city in Nicaragua
 
23283
+#: ../data/Locations.xml.in.h:7561
 
23284
+msgid "Rivas"
 
23285
+msgstr ""
 
23286
+
 
23287
+#. A city in California in the United States
 
23288
+#: ../data/Locations.xml.in.h:7563
 
23289
+msgid "Riverside"
 
23290
+msgstr ""
 
23291
+
 
23292
+#. A city in Wyoming in the United States
 
23293
+#: ../data/Locations.xml.in.h:7565
 
23294
+msgid "Riverton"
 
23295
+msgstr ""
 
23296
+
 
23297
+#. A city in Quebec in Canada
 
23298
+#: ../data/Locations.xml.in.h:7567
 
23299
+msgid "Rivière-du-Loup"
 
23300
+msgstr ""
 
23301
+
 
23302
+#. A city in Quebec in Canada
 
23303
+#: ../data/Locations.xml.in.h:7569
 
23304
+msgid "Rivière-la-Madeleine"
 
23305
+msgstr ""
 
23306
+
 
23307
+#. A city in Ukraine
 
23308
+#: ../data/Locations.xml.in.h:7571
 
23309
+msgid "Rivne"
 
23310
+msgstr ""
 
23311
+
 
23312
+#. The capital of Saudi Arabia.
 
23313
+#. "Riyadh" is the traditional English name.
 
23314
+#. The local name in Arabic is "Ar Riyad".
 
23315
+#.
 
23316
+#: ../data/Locations.xml.in.h:7576
 
23317
+msgid "Riyadh"
 
23318
+msgstr ""
 
23319
+
 
23320
+#. The capital of the British Virgin Islands
 
23321
+#: ../data/Locations.xml.in.h:7578
 
23322
+msgid "Road Town"
 
23323
+msgstr ""
 
23324
+
 
23325
+#. A city in Virginia in the United States
 
23326
+#: ../data/Locations.xml.in.h:7580
 
23327
+msgid "Roanoke"
 
23328
+msgstr ""
 
23329
+
 
23330
+#. A city in North Carolina in the United States
 
23331
+#: ../data/Locations.xml.in.h:7582
 
23332
+msgid "Roanoke Rapids"
 
23333
+msgstr ""
 
23334
+
 
23335
+#. A city in Honduras
 
23336
+#: ../data/Locations.xml.in.h:7584
 
23337
+msgid "Roatán"
 
23338
+msgstr ""
 
23339
+
 
23340
+#. A city in Quebec in Canada
 
23341
+#: ../data/Locations.xml.in.h:7586
 
23342
+msgid "Roberval"
 
23343
+msgstr ""
 
23344
+
 
23345
+#. A city in Illinois in the United States
 
23346
+#: ../data/Locations.xml.in.h:7588
 
23347
+msgid "Robinson"
 
23348
+msgstr ""
 
23349
+
 
23350
+#. A city in Bolivia
 
23351
+#: ../data/Locations.xml.in.h:7590
 
23352
+msgid "Roboré"
 
23353
+msgstr ""
 
23354
+
 
23355
+#. A city in Illinois in the United States
 
23356
+#: ../data/Locations.xml.in.h:7592
 
23357
+msgid "Rochelle"
 
23358
+msgstr ""
 
23359
+
 
23360
+#. A city in South Carolina in the United States
 
23361
+#: ../data/Locations.xml.in.h:7594
 
23362
+msgid "Rock Hill"
 
23363
+msgstr ""
 
23364
+
 
23365
+#. A city in Wyoming in the United States
 
23366
+#: ../data/Locations.xml.in.h:7596
 
23367
+msgid "Rock Springs"
 
23368
+msgstr ""
 
23369
+
 
23370
+#. A city in Illinois in the United States
 
23371
+#: ../data/Locations.xml.in.h:7598
 
23372
+msgid "Rockford"
 
23373
+msgstr ""
 
23374
+
 
23375
+#. A city in Saskatchewan in Canada
 
23376
+#: ../data/Locations.xml.in.h:7600
 
23377
+msgid "Rockglen"
 
23378
+msgstr ""
 
23379
+
 
23380
+#. A city in Queensland in Australia
 
23381
+#: ../data/Locations.xml.in.h:7602
 
23382
+msgid "Rockhampton"
 
23383
+msgstr ""
 
23384
+
 
23385
+#. A city in Maine in the United States
 
23386
+#: ../data/Locations.xml.in.h:7604
 
23387
+msgid "Rockland"
 
23388
+msgstr ""
 
23389
+
 
23390
+#. A city in Texas in the United States
 
23391
+#: ../data/Locations.xml.in.h:7606
 
23392
+msgid "Rockport"
 
23393
+msgstr ""
 
23394
+
 
23395
+#. A city in Texas in the United States
 
23396
+#: ../data/Locations.xml.in.h:7608
 
23397
+msgid "Rocksprings"
 
23398
+msgstr ""
 
23399
+
 
23400
+#. A city in North Carolina in the United States
 
23401
+#: ../data/Locations.xml.in.h:7610
 
23402
+msgid "Rocky Mount"
 
23403
+msgstr ""
 
23404
+
 
23405
+#. A city in Alberta in Canada
 
23406
+#: ../data/Locations.xml.in.h:7612
 
23407
+msgid "Rocky Mountain House"
 
23408
+msgstr ""
 
23409
+
 
23410
+#. A city in British Columbia in Canada
 
23411
+#: ../data/Locations.xml.in.h:7614
 
23412
+msgid "Rocky Point"
 
23413
+msgstr ""
 
23414
+
 
23415
+#. A city in France
 
23416
+#: ../data/Locations.xml.in.h:7616
 
23417
+msgid "Rodez"
 
23418
+msgstr ""
 
23419
+
 
23420
+#. A city in North Carolina in the United States
 
23421
+#: ../data/Locations.xml.in.h:7618
 
23422
+msgid "Roe"
 
23423
+msgstr ""
 
23424
+
 
23425
+#. A city in Arkansas in the United States
 
23426
+#: ../data/Locations.xml.in.h:7620
 
23427
+msgid "Rogers"
 
23428
+msgstr ""
 
23429
+
 
23430
+#. A city in Michigan in the United States
 
23431
+#: ../data/Locations.xml.in.h:7622
 
23432
+msgid "Rogers City"
 
23433
+msgstr ""
 
23434
+
 
23435
+#. RO - Romania
 
23436
+#: ../data/Locations.xml.in.h:7624
 
23437
+msgid "Romania"
 
23438
+msgstr ""
 
23439
+
 
23440
+#. A city in France
 
23441
+#: ../data/Locations.xml.in.h:7626
 
23442
+msgid "Romorantin"
 
23443
+msgstr ""
 
23444
+
 
23445
+#. A city in the Isle of Man
 
23446
+#: ../data/Locations.xml.in.h:7628
 
23447
+msgid "Ronaldsway"
 
23448
+msgstr ""
 
23449
+
 
23450
+#. A city in Italy
 
23451
+#: ../data/Locations.xml.in.h:7630
 
23452
+msgid "Ronchi dei Legionari"
 
23453
+msgstr ""
 
23454
+
 
23455
+#. A state/province/territory in Brazil
 
23456
+#: ../data/Locations.xml.in.h:7632
 
23457
+msgid "Rondônia"
 
23458
+msgstr ""
 
23459
+
 
23460
+#. A city in Sweden
 
23461
+#: ../data/Locations.xml.in.h:7634
 
23462
+msgid "Ronneby"
 
23463
+msgstr ""
 
23464
+
 
23465
+#. A city in Argentina
 
23466
+#: ../data/Locations.xml.in.h:7636
 
23467
+msgid "Rosario"
 
23468
+msgstr ""
 
23469
+
 
23470
+#. A city in Oregon in the United States
 
23471
+#: ../data/Locations.xml.in.h:7638
 
23472
+msgid "Roseburg"
 
23473
+msgstr ""
 
23474
+
 
23475
+#. A city in Saskatchewan in Canada
 
23476
+#: ../data/Locations.xml.in.h:7640
 
23477
+msgid "Rosetown"
 
23478
+msgstr ""
 
23479
+
 
23480
+#. A city in Denmark
 
23481
+#: ../data/Locations.xml.in.h:7642
 
23482
+msgid "Roskilde"
 
23483
+msgstr ""
 
23484
+
 
23485
+#. A city in Russia.
 
23486
+#. The local name in Russian is "Ростов-на-Дону".
 
23487
+#.
 
23488
+#: ../data/Locations.xml.in.h:7646
 
23489
+msgid "Rostov"
 
23490
+msgstr ""
 
23491
+
 
23492
+#. A city in New Mexico in the United States
 
23493
+#: ../data/Locations.xml.in.h:7648
 
23494
+msgid "Roswell"
 
23495
+msgstr ""
 
23496
+
 
23497
+#. A city in Spain
 
23498
+#: ../data/Locations.xml.in.h:7650
 
23499
+msgid "Rota"
 
23500
+msgstr ""
 
23501
+
 
23502
+#. A city in Bavaria in Germany
 
23503
+#: ../data/Locations.xml.in.h:7652
 
23504
+msgid "Roth"
 
23505
+msgstr ""
 
23506
+
 
23507
+#. A British research station in Antarctica. The string is
 
23508
+#. only used in places where "Antarctica" is already clear
 
23509
+#. from context.
 
23510
+#.
 
23511
+#: ../data/Locations.xml.in.h:7657
 
23512
+msgid "Rothera Research Station"
 
23513
+msgstr ""
 
23514
+
 
23515
+#. A city in the Netherlands
 
23516
+#: ../data/Locations.xml.in.h:7659
 
23517
+msgid "Rotterdam"
 
23518
+msgstr ""
 
23519
+
 
23520
+#. A city in France
 
23521
+#: ../data/Locations.xml.in.h:7661
 
23522
+msgid "Rouen"
 
23523
+msgstr ""
 
23524
+
 
23525
+#. A city in Quebec in Canada
 
23526
+#: ../data/Locations.xml.in.h:7663
 
23527
+msgid "Rouyn"
 
23528
+msgstr ""
 
23529
+
 
23530
+#. A city in Finland
 
23531
+#: ../data/Locations.xml.in.h:7665
 
23532
+msgid "Rovaniemi"
 
23533
+msgstr ""
 
23534
+
 
23535
+#. A city in North Carolina in the United States
 
23536
+#: ../data/Locations.xml.in.h:7667
 
23537
+msgid "Roxboro"
 
23538
+msgstr ""
 
23539
+
 
23540
+#. A city in New Mexico in the United States
 
23541
+#: ../data/Locations.xml.in.h:7669
 
23542
+msgid "Ruidoso"
 
23543
+msgstr ""
 
23544
+
 
23545
+#. A city in Bolivia
 
23546
+#: ../data/Locations.xml.in.h:7671
 
23547
+msgid "Rurrenabaque"
 
23548
+msgstr ""
 
23549
+
 
23550
+#. A city in Minnesota in the United States
 
23551
+#: ../data/Locations.xml.in.h:7673
 
23552
+msgid "Rush City"
 
23553
+msgstr ""
 
23554
+
 
23555
+#. A city in Kansas in the United States
 
23556
+#: ../data/Locations.xml.in.h:7675
 
23557
+msgid "Russell"
 
23558
+msgstr ""
 
23559
+
 
23560
+#. A city in Arkansas in the United States
 
23561
+#: ../data/Locations.xml.in.h:7677
 
23562
+msgid "Russellville"
 
23563
+msgstr ""
 
23564
+
 
23565
+#. RU - Russian Federation
 
23566
+#: ../data/Locations.xml.in.h:7679
 
23567
+msgid "Russia"
 
23568
+msgstr ""
 
23569
+
 
23570
+#. A city in Louisiana in the United States
 
23571
+#: ../data/Locations.xml.in.h:7681
 
23572
+msgid "Ruston"
 
23573
+msgstr ""
 
23574
+
 
23575
+#. A city in Vermont in the United States
 
23576
+#: ../data/Locations.xml.in.h:7683
 
23577
+msgid "Rutland"
 
23578
+msgstr ""
 
23579
+
 
23580
+#. RW - Rwanda
 
23581
+#: ../data/Locations.xml.in.h:7685
 
23582
+msgid "Rwanda"
 
23583
+msgstr ""
 
23584
+
 
23585
+#. A city in Norway
 
23586
+#: ../data/Locations.xml.in.h:7687
 
23587
+msgid "Rygge"
 
23588
+msgstr ""
 
23589
+
 
23590
+#. A city in Poland
 
23591
+#: ../data/Locations.xml.in.h:7689
 
23592
+msgid "Rzeszów"
 
23593
+msgstr ""
 
23594
+
 
23595
+#. RE - Réunion, an overseas department of France in the Indian
 
23596
+#. Ocean.
 
23597
+#.
 
23598
+#: ../data/Locations.xml.in.h:7693
 
23599
+msgid "Réunion"
 
23600
+msgstr ""
 
23601
+
 
23602
+#. A city in Argentina
 
23603
+#: ../data/Locations.xml.in.h:7695
 
23604
+msgid "Río Gallegos"
 
23605
+msgstr ""
 
23606
+
 
23607
+#. A city in Argentina
 
23608
+#: ../data/Locations.xml.in.h:7697
 
23609
+msgid "Río Grande"
 
23610
+msgstr ""
 
23611
+
 
23612
+#. A city in Denmark
 
23613
+#: ../data/Locations.xml.in.h:7699
 
23614
+msgid "Rønne"
 
23615
+msgstr ""
 
23616
+
 
23617
+#. A city in Norway
 
23618
+#: ../data/Locations.xml.in.h:7701
 
23619
+msgid "Røros"
 
23620
+msgstr ""
 
23621
+
 
23622
+#. A city in Norway
 
23623
+#: ../data/Locations.xml.in.h:7703
 
23624
+msgid "Rørvik"
 
23625
+msgstr ""
 
23626
+
 
23627
+#. A city in Norway
 
23628
+#: ../data/Locations.xml.in.h:7705
 
23629
+msgid "Røssvoll"
 
23630
+msgstr ""
 
23631
+
 
23632
+#. A city in Norway
 
23633
+#: ../data/Locations.xml.in.h:7707
 
23634
+msgid "Røst"
 
23635
+msgstr ""
 
23636
+
 
23637
+#. The capital of Latvia
 
23638
+#: ../data/Locations.xml.in.h:7709
 
23639
+msgid "Rīga"
 
23640
+msgstr ""
 
23641
+
 
23642
+#. A city in Yemen
 
23643
+#: ../data/Locations.xml.in.h:7711
 
23644
+msgid "Sa'dah"
 
23645
+msgstr ""
 
23646
+
 
23647
+#. A state/province/territory in Germany
 
23648
+#: ../data/Locations.xml.in.h:7713
 
23649
+msgid "Saarland"
 
23650
+msgstr ""
 
23651
+
 
23652
+#. A city in Spain
 
23653
+#: ../data/Locations.xml.in.h:7715
 
23654
+msgid "Sabadell"
 
23655
+msgstr ""
 
23656
+
 
23657
+#. A city in Libya
 
23658
+#: ../data/Locations.xml.in.h:7717
 
23659
+msgid "Sabha"
 
23660
+msgstr ""
 
23661
+
 
23662
+#. A city in Iran
 
23663
+#: ../data/Locations.xml.in.h:7719
 
23664
+msgid "Sabzevar"
 
23665
+msgstr ""
 
23666
+
 
23667
+#. A city in Northwest Territories in Canada
 
23668
+#: ../data/Locations.xml.in.h:7721
 
23669
+msgid "Sachs Harbour"
 
23670
+msgstr ""
 
23671
+
 
23672
+#. A city in California in the United States
 
23673
+#: ../data/Locations.xml.in.h:7723
 
23674
+msgid "Sacramento"
 
23675
+msgstr ""
 
23676
+
 
23677
+#. A city in Arizona in the United States
 
23678
+#: ../data/Locations.xml.in.h:7725
 
23679
+msgid "Safford"
 
23680
+msgstr ""
 
23681
+
 
23682
+#. A city in Japan
 
23683
+#: ../data/Locations.xml.in.h:7727
 
23684
+msgid "Saga"
 
23685
+msgstr ""
 
23686
+
 
23687
+#. A city in Michigan in the United States
 
23688
+#: ../data/Locations.xml.in.h:7729
 
23689
+msgid "Saginaw"
 
23690
+msgstr ""
 
23691
+
 
23692
+#. A city in Colorado in the United States
 
23693
+#: ../data/Locations.xml.in.h:7731
 
23694
+msgid "Saguache"
 
23695
+msgstr ""
 
23696
+
 
23697
+#. A city in Newfoundland and Labrador in Canada
 
23698
+#: ../data/Locations.xml.in.h:7733
 
23699
+msgid "Saint Anthony"
 
23700
+msgstr ""
 
23701
+
 
23702
+#. A city in Wales in the United Kingdom
 
23703
+#: ../data/Locations.xml.in.h:7735
 
23704
+msgid "Saint Athan"
 
23705
+msgstr ""
 
23706
+
 
23707
+#. BL - Saint Barthélemy, an overseas territory of France in
 
23708
+#. the Caribbean, formerly part of Guadeloupe.
 
23709
+#.
 
23710
+#: ../data/Locations.xml.in.h:7739
 
23711
+msgid "Saint Barthélemy"
 
23712
+msgstr ""
 
23713
+
 
23714
+#. A city in Ontario in Canada
 
23715
+#: ../data/Locations.xml.in.h:7741
 
23716
+msgid "Saint Catharines"
 
23717
+msgstr ""
 
23718
+
 
23719
+#. A city in Minnesota in the United States
 
23720
+#: ../data/Locations.xml.in.h:7743
 
23721
+msgid "Saint Cloud"
 
23722
+msgstr ""
 
23723
+
 
23724
+#. The capital of Grenada
 
23725
+#: ../data/Locations.xml.in.h:7745
 
23726
+msgid "Saint George's"
 
23727
+msgstr ""
 
23728
+
 
23729
+#. SH - Saint Helena, a British territory in the South Atlantic
 
23730
+#: ../data/Locations.xml.in.h:7747
 
23731
+msgid "Saint Helena"
 
23732
+msgstr ""
 
23733
+
 
23734
+#. The capital of Jersey
 
23735
+#: ../data/Locations.xml.in.h:7749
 
23736
+msgid "Saint Helier"
 
23737
+msgstr ""
 
23738
+
 
23739
+#. A city in New Brunswick in Canada
 
23740
+#: ../data/Locations.xml.in.h:7751
 
23741
+msgid "Saint John"
 
23742
+msgstr ""
 
23743
+
 
23744
+#. A city in Arizona in the United States
 
23745
+#: ../data/Locations.xml.in.h:7753
 
23746
+msgid "Saint Johns"
 
23747
+msgstr ""
 
23748
+
 
23749
+#. A city in Vermont in the United States
 
23750
+#: ../data/Locations.xml.in.h:7755
 
23751
+msgid "Saint Johnsbury"
 
23752
+msgstr ""
 
23753
+
 
23754
+#. A city in Dominica
 
23755
+#: ../data/Locations.xml.in.h:7757
 
23756
+msgid "Saint Joseph"
 
23757
+msgstr ""
 
23758
+
 
23759
+#. KN - Saint Kitts and Nevis
 
23760
+#: ../data/Locations.xml.in.h:7759
 
23761
+msgid "Saint Kitts and Nevis"
 
23762
+msgstr ""
 
23763
+
 
23764
+#. A city in New Brunswick in Canada
 
23765
+#: ../data/Locations.xml.in.h:7761
 
23766
+msgid "Saint Leonard"
 
23767
+msgstr ""
 
23768
+
 
23769
+#. LC - Saint Lucia
 
23770
+#: ../data/Locations.xml.in.h:7763
 
23771
+msgid "Saint Lucia"
 
23772
+msgstr ""
 
23773
+
 
23774
+#. MF - Saint Martin, the French half of the island of Saint
 
23775
+#. Martin / Sint Maarten. (The Dutch half is considered part of
 
23776
+#. the Netherlands Antilles.)
 
23777
+#.
 
23778
+#: ../data/Locations.xml.in.h:7768
 
23779
+msgid "Saint Martin"
 
23780
+msgstr ""
 
23781
+
 
23782
+#. A city in Alaska in the United States
 
23783
+#: ../data/Locations.xml.in.h:7770
 
23784
+msgid "Saint Marys"
 
23785
+msgstr ""
 
23786
+
 
23787
+#. A city in Maryland in the United States
 
23788
+#: ../data/Locations.xml.in.h:7772
 
23789
+msgid "Saint Marys City"
 
23790
+msgstr ""
 
23791
+
 
23792
+#. A city in Alaska in the United States
 
23793
+#: ../data/Locations.xml.in.h:7774
 
23794
+msgid "Saint Paul"
 
23795
+msgstr ""
 
23796
+
 
23797
+#. The capital of Guernsey
 
23798
+#: ../data/Locations.xml.in.h:7776
 
23799
+msgid "Saint Peter Port"
 
23800
+msgstr ""
 
23801
+
 
23802
+#. A city in Russia.
 
23803
+#. "Saint Petersburg" is the traditional English name.
 
23804
+#. The local name in Russian is "Sankt-Peterburg /
 
23805
+#. Санкт-Петербург".
 
23806
+#.
 
23807
+#: ../data/Locations.xml.in.h:7782
 
23808
+msgid "Saint Petersburg"
 
23809
+msgstr ""
 
23810
+
 
23811
+#. PM - Saint Pierre and Miquelon, a French territory in North
 
23812
+#. America (off the coast of Newfoundland). The French name is
 
23813
+#. "Saint-Pierre-et-Miquelon".
 
23814
+#.
 
23815
+#: ../data/Locations.xml.in.h:7787
 
23816
+msgid "Saint Pierre and Miquelon"
 
23817
+msgstr ""
 
23818
+
 
23819
+#. A city in New Brunswick in Canada
 
23820
+#: ../data/Locations.xml.in.h:7789
 
23821
+msgid "Saint Stephen"
 
23822
+msgstr ""
 
23823
+
 
23824
+#. VC - Saint Vincent and the Grenadines
 
23825
+#: ../data/Locations.xml.in.h:7791
 
23826
+msgid "Saint Vincent and the Grenadines"
 
23827
+msgstr ""
 
23828
+
 
23829
+#. A city in Quebec in Canada
 
23830
+#: ../data/Locations.xml.in.h:7793
 
23831
+msgid "Saint-Anicet"
 
23832
+msgstr ""
 
23833
+
 
23834
+#. A city in France
 
23835
+#: ../data/Locations.xml.in.h:7795
 
23836
+msgid "Saint-Brieuc"
 
23837
+msgstr ""
 
23838
+
 
23839
+#. A city in Quebec in Canada
 
23840
+#: ../data/Locations.xml.in.h:7797
 
23841
+msgid "Saint-Chrysostome"
 
23842
+msgstr ""
 
23843
+
 
23844
+#. The capital of Réunion
 
23845
+#: ../data/Locations.xml.in.h:7799
 
23846
+msgid "Saint-Denis"
 
23847
+msgstr ""
 
23848
+
 
23849
+#. A city in Quebec in Canada
 
23850
+#: ../data/Locations.xml.in.h:7801
 
23851
+msgid "Saint-Fabien"
 
23852
+msgstr ""
 
23853
+
 
23854
+#. A city in Quebec in Canada
 
23855
+#: ../data/Locations.xml.in.h:7803
 
23856
+msgid "Saint-François"
 
23857
+msgstr ""
 
23858
+
 
23859
+#. A city in Quebec in Canada
 
23860
+#: ../data/Locations.xml.in.h:7805
 
23861
+msgid "Saint-Henri-de-Taillon"
 
23862
+msgstr ""
 
23863
+
 
23864
+#. A city in Quebec in Canada
 
23865
+#: ../data/Locations.xml.in.h:7807
 
23866
+msgid "Saint-Jean"
 
23867
+msgstr ""
 
23868
+
 
23869
+#. A city in Quebec in Canada
 
23870
+#: ../data/Locations.xml.in.h:7809
 
23871
+msgid "Saint-Joachim"
 
23872
+msgstr ""
 
23873
+
 
23874
+#. A city in Quebec in Canada
 
23875
+#: ../data/Locations.xml.in.h:7811
 
23876
+msgid "Saint-Jovite"
 
23877
+msgstr ""
 
23878
+
 
23879
+#. A city in Senegal
 
23880
+#: ../data/Locations.xml.in.h:7813
 
23881
+msgid "Saint-Louis"
 
23882
+msgstr ""
 
23883
+
 
23884
+#. A city in France
 
23885
+#: ../data/Locations.xml.in.h:7815
 
23886
+msgid "Saint-Quentin"
 
23887
+msgstr ""
 
23888
+
 
23889
+#. A city in France
 
23890
+#: ../data/Locations.xml.in.h:7817
 
23891
+msgid "Saint-Yan"
 
23892
+msgstr ""
 
23893
+
 
23894
+#. A city in Quebec in Canada
 
23895
+#: ../data/Locations.xml.in.h:7819
 
23896
+msgid "Sainte-Anne-de-la-Pocatière"
 
23897
+msgstr ""
 
23898
+
 
23899
+#. A city in Iran.
 
23900
+#. The name is also written "سخت سر".
 
23901
+#.
 
23902
+#: ../data/Locations.xml.in.h:7823
 
23903
+msgid "Sakht Sar"
 
23904
+msgstr ""
 
23905
+
 
23906
+#. A city in Oman
 
23907
+#: ../data/Locations.xml.in.h:7825
 
23908
+msgid "Salalah"
 
23909
+msgstr ""
 
23910
+
 
23911
+#. A city in Spain
 
23912
+#: ../data/Locations.xml.in.h:7827
 
23913
+msgid "Salamanca"
 
23914
+msgstr ""
 
23915
+
 
23916
+#. A city in Colorado in the United States
 
23917
+#: ../data/Locations.xml.in.h:7829
 
23918
+msgid "Salida"
 
23919
+msgstr ""
 
23920
+
 
23921
+#. A city in Italy
 
23922
+#: ../data/Locations.xml.in.h:7831
 
23923
+msgid "Salignano"
 
23924
+msgstr ""
 
23925
+
 
23926
+#. A city in Kansas in the United States
 
23927
+#: ../data/Locations.xml.in.h:7833
 
23928
+msgid "Salina"
 
23929
+msgstr ""
 
23930
+
 
23931
+#. A city in California in the United States
 
23932
+#: ../data/Locations.xml.in.h:7835
 
23933
+msgid "Salinas"
 
23934
+msgstr ""
 
23935
+
 
23936
+#. A city in Oklahoma in the United States
 
23937
+#: ../data/Locations.xml.in.h:7837
 
23938
+msgid "Sallisaw"
 
23939
+msgstr ""
 
23940
+
 
23941
+#. A city in Idaho in the United States
 
23942
+#: ../data/Locations.xml.in.h:7839
 
23943
+msgid "Salmon"
 
23944
+msgstr ""
 
23945
+
 
23946
+#. A city in British Columbia in Canada
 
23947
+#: ../data/Locations.xml.in.h:7841
 
23948
+msgid "Salmon Arm"
 
23949
+msgstr ""
 
23950
+
 
23951
+#. A city in France
 
23952
+#: ../data/Locations.xml.in.h:7843
 
23953
+msgid "Salon"
 
23954
+msgstr ""
 
23955
+
 
23956
+#. A city in Utah in the United States
 
23957
+#: ../data/Locations.xml.in.h:7845
 
23958
+msgid "Salt Lake City"
 
23959
+msgstr ""
 
23960
+
 
23961
+#. A city in Argentina
 
23962
+#: ../data/Locations.xml.in.h:7847
 
23963
+msgid "Salta"
 
23964
+msgstr ""
 
23965
+
 
23966
+#. A city in Coahuila in Mexico
 
23967
+#: ../data/Locations.xml.in.h:7849
 
23968
+msgid "Saltillo"
 
23969
+msgstr ""
 
23970
+
 
23971
+#. A city in Bahia in Brazil
 
23972
+#: ../data/Locations.xml.in.h:7851
 
23973
+msgid "Salvador"
 
23974
+msgstr ""
 
23975
+
 
23976
+#. A city in Austria
 
23977
+#: ../data/Locations.xml.in.h:7853
 
23978
+msgid "Salzburg"
 
23979
+msgstr ""
 
23980
+
 
23981
+#. A city in Russia.
 
23982
+#. The local name in Russian is "Самара".
 
23983
+#.
 
23984
+#: ../data/Locations.xml.in.h:7857
 
23985
+msgid "Samara"
 
23986
+msgstr ""
 
23987
+
 
23988
+#. A Russian time zone, used in the Samara oblast and
 
23989
+#. Udmurtia, on the eastern edge of European Russia. The
 
23990
+#. Russian name is "Самарское время". This string is only
 
23991
+#. used in places where "Russia" is already clear from
 
23992
+#. context.
 
23993
+#.
 
23994
+#: ../data/Locations.xml.in.h:7864
 
23995
+msgid "Samara Time"
 
23996
+msgstr ""
 
23997
+
 
23998
+#. A city in Uzbekistan
 
23999
+#: ../data/Locations.xml.in.h:7866
 
24000
+msgid "Samarqand"
 
24001
+msgstr ""
 
24002
+
 
24003
+#. WS - Samoa, an independent nation not to be confused with
 
24004
+#. "American Samoa"
 
24005
+#.
 
24006
+#: ../data/Locations.xml.in.h:7870
 
24007
+msgid "Samoa"
 
24008
+msgstr ""
 
24009
+
 
24010
+#. A city in Turkey
 
24011
+#: ../data/Locations.xml.in.h:7872
 
24012
+msgid "Samsun"
 
24013
+msgstr ""
 
24014
+
 
24015
+#. A city in Colombia
 
24016
+#: ../data/Locations.xml.in.h:7874
 
24017
+msgid "San Andrés"
 
24018
+msgstr ""
 
24019
+
 
24020
+#. A city in Texas in the United States
 
24021
+#: ../data/Locations.xml.in.h:7876
 
24022
+msgid "San Angelo"
 
24023
+msgstr ""
 
24024
+
 
24025
+#. A city in Texas in the United States
 
24026
+#: ../data/Locations.xml.in.h:7878
 
24027
+msgid "San Antonio"
 
24028
+msgstr ""
 
24029
+
 
24030
+#. A city in Venezuela
 
24031
+#: ../data/Locations.xml.in.h:7880
 
24032
+msgid "San Antonio del Táchira"
 
24033
+msgstr ""
 
24034
+
 
24035
+#. A city in California in the United States
 
24036
+#: ../data/Locations.xml.in.h:7882
 
24037
+msgid "San Bernardino"
 
24038
+msgstr ""
 
24039
+
 
24040
+#. A city in Bolivia
 
24041
+#: ../data/Locations.xml.in.h:7884
 
24042
+msgid "San Borja"
 
24043
+msgstr ""
 
24044
+
 
24045
+#. A city in California in the United States
 
24046
+#: ../data/Locations.xml.in.h:7886
 
24047
+msgid "San Carlos"
 
24048
+msgstr ""
 
24049
+
 
24050
+#. A city in Argentina
 
24051
+#: ../data/Locations.xml.in.h:7888
 
24052
+msgid "San Carlos de Bariloche"
 
24053
+msgstr ""
 
24054
+
 
24055
+#. A city in California in the United States
 
24056
+#: ../data/Locations.xml.in.h:7890
 
24057
+msgid "San Diego"
 
24058
+msgstr ""
 
24059
+
 
24060
+#. A city in Venezuela
 
24061
+#: ../data/Locations.xml.in.h:7892
 
24062
+msgid "San Felipe"
 
24063
+msgstr ""
 
24064
+
 
24065
+#. A city in California in the United States
 
24066
+#: ../data/Locations.xml.in.h:7894
 
24067
+msgid "San Francisco"
 
24068
+msgstr ""
 
24069
+
 
24070
+#. A city in Bolivia
 
24071
+#: ../data/Locations.xml.in.h:7896
 
24072
+msgid "San Ignacio de Velasco"
 
24073
+msgstr ""
 
24074
+
 
24075
+#. A city in Spain
 
24076
+#: ../data/Locations.xml.in.h:7898
 
24077
+msgid "San Javier"
 
24078
+msgstr ""
 
24079
+
 
24080
+#. A city in Bolivia
 
24081
+#: ../data/Locations.xml.in.h:7900
 
24082
+msgid "San Joaquín"
 
24083
+msgstr ""
 
24084
+
 
24085
+#. A city in California in the United States
 
24086
+#: ../data/Locations.xml.in.h:7902
 
24087
+msgid "San Jose"
 
24088
+msgstr ""
 
24089
+
 
24090
+#. The capital of Costa Rica
 
24091
+#: ../data/Locations.xml.in.h:7904
 
24092
+msgid "San José"
 
24093
+msgstr ""
 
24094
+
 
24095
+#. A city in Bolivia.
 
24096
+#. One of several cities in Bolivia called "San José".
 
24097
+#.
 
24098
+#: ../data/Locations.xml.in.h:7908
 
24099
+msgid "San José de Chiquitos"
 
24100
+msgstr ""
 
24101
+
 
24102
+#. A city in Baja California Sur in Mexico
 
24103
+#: ../data/Locations.xml.in.h:7910
 
24104
+msgid "San José del Cabo"
 
24105
+msgstr ""
 
24106
+
 
24107
+#. A city in Puerto Rico
 
24108
+#: ../data/Locations.xml.in.h:7912
 
24109
+msgid "San Juan"
 
24110
+msgstr ""
 
24111
+
 
24112
+#. A city in Venezuela
 
24113
+#: ../data/Locations.xml.in.h:7914
 
24114
+msgid "San Juan de los Morros"
 
24115
+msgstr ""
 
24116
+
 
24117
+#. A city in California in the United States
 
24118
+#: ../data/Locations.xml.in.h:7916
 
24119
+msgid "San Luis Obispo"
 
24120
+msgstr ""
 
24121
+
 
24122
+#. A city in Texas in the United States
 
24123
+#: ../data/Locations.xml.in.h:7918
 
24124
+msgid "San Marcos"
 
24125
+msgstr ""
 
24126
+
 
24127
+#. A city in Spain
 
24128
+#: ../data/Locations.xml.in.h:7920
 
24129
+msgid "San Pablo"
 
24130
+msgstr ""
 
24131
+
 
24132
+#. The capital of El Salvador
 
24133
+#: ../data/Locations.xml.in.h:7922
 
24134
+msgid "San Salvador"
 
24135
+msgstr ""
 
24136
+
 
24137
+#. A city in Argentina
 
24138
+#: ../data/Locations.xml.in.h:7924
 
24139
+msgid "San Salvador de Jujuy"
 
24140
+msgstr ""
 
24141
+
 
24142
+#. A city in Italy
 
24143
+#: ../data/Locations.xml.in.h:7926
 
24144
+msgid "San Stèfano"
 
24145
+msgstr ""
 
24146
+
 
24147
+#. A city in Venezuela
 
24148
+#: ../data/Locations.xml.in.h:7928
 
24149
+msgid "San Tomé"
 
24150
+msgstr ""
 
24151
+
 
24152
+#. The capital of Yemen.
 
24153
+#. "Sanaa" is the traditional English name.
 
24154
+#. The local name in Arabic is "San'a'".
 
24155
+#.
 
24156
+#: ../data/Locations.xml.in.h:7933
 
24157
+msgid "Sanaa"
 
24158
+msgstr ""
 
24159
+
 
24160
+#. A city in Iran
 
24161
+#: ../data/Locations.xml.in.h:7935
 
24162
+msgid "Sanandaj"
 
24163
+msgstr ""
 
24164
+
 
24165
+#. A city in Alaska in the United States
 
24166
+#: ../data/Locations.xml.in.h:7937
 
24167
+msgid "Sand Point"
 
24168
+msgstr ""
 
24169
+
 
24170
+#. A city in Malaysia
 
24171
+#: ../data/Locations.xml.in.h:7939
 
24172
+msgid "Sandakan"
 
24173
+msgstr ""
 
24174
+
 
24175
+#. A city in Norway
 
24176
+#: ../data/Locations.xml.in.h:7941
 
24177
+msgid "Sandane"
 
24178
+msgstr ""
 
24179
+
 
24180
+#. A city in California in the United States
 
24181
+#: ../data/Locations.xml.in.h:7943
 
24182
+msgid "Sandberg"
 
24183
+msgstr ""
 
24184
+
 
24185
+#. A city in Idaho in the United States
 
24186
+#: ../data/Locations.xml.in.h:7945
 
24187
+msgid "Sandpoint"
 
24188
+msgstr ""
 
24189
+
 
24190
+#. A city in British Columbia in Canada
 
24191
+#: ../data/Locations.xml.in.h:7947
 
24192
+msgid "Sandspit"
 
24193
+msgstr ""
 
24194
+
 
24195
+#. A city in Massachusetts in the United States
 
24196
+#: ../data/Locations.xml.in.h:7949
 
24197
+msgid "Sandwich"
 
24198
+msgstr ""
 
24199
+
 
24200
+#. A city in Switzerland
 
24201
+#: ../data/Locations.xml.in.h:7951
 
24202
+msgid "Sankt Gallen"
 
24203
+msgstr ""
 
24204
+
 
24205
+#. A city in Japan
 
24206
+#: ../data/Locations.xml.in.h:7953
 
24207
+msgid "Sanrizuka"
 
24208
+msgstr ""
 
24209
+
 
24210
+#. A city in Italy
 
24211
+#: ../data/Locations.xml.in.h:7955
 
24212
+msgid "Sant'Eufemia Lamezia"
 
24213
+msgstr ""
 
24214
+
 
24215
+#. A city in California in the United States
 
24216
+#: ../data/Locations.xml.in.h:7957
 
24217
+msgid "Santa Ana"
 
24218
+msgstr ""
 
24219
+
 
24220
+#. A city in Bolivia
 
24221
+#: ../data/Locations.xml.in.h:7959
 
24222
+msgid "Santa Ana de Yacuma"
 
24223
+msgstr ""
 
24224
+
 
24225
+#. A city in California in the United States
 
24226
+#: ../data/Locations.xml.in.h:7961
 
24227
+msgid "Santa Barbara"
 
24228
+msgstr ""
 
24229
+
 
24230
+#. A city in Venezuela
 
24231
+#: ../data/Locations.xml.in.h:7963
 
24232
+msgid "Santa Bárbara"
 
24233
+msgstr ""
 
24234
+
 
24235
+#. A state/province/territory in Brazil
 
24236
+#: ../data/Locations.xml.in.h:7965
 
24237
+msgid "Santa Catarina"
 
24238
+msgstr ""
 
24239
+
 
24240
+#. A city in Bolivia
 
24241
+#: ../data/Locations.xml.in.h:7967
 
24242
+msgid "Santa Cruz"
 
24243
+msgstr ""
 
24244
+
 
24245
+#. A city in Portugal.
 
24246
+#. One of several cities in Portugal called "Santa Cruz".
 
24247
+#.
 
24248
+#: ../data/Locations.xml.in.h:7971
 
24249
+msgid "Santa Cruz das Flores"
 
24250
+msgstr ""
 
24251
+
 
24252
+#. A city in New Mexico in the United States
 
24253
+#: ../data/Locations.xml.in.h:7973
 
24254
+msgid "Santa Fe"
 
24255
+msgstr ""
 
24256
+
 
24257
+#. A city in Colombia
 
24258
+#: ../data/Locations.xml.in.h:7975
 
24259
+msgid "Santa Marta"
 
24260
+msgstr ""
 
24261
+
 
24262
+#. A city in California in the United States
 
24263
+#: ../data/Locations.xml.in.h:7977
 
24264
+msgid "Santa Monica"
 
24265
+msgstr ""
 
24266
+
 
24267
+#. A city in California in the United States
 
24268
+#: ../data/Locations.xml.in.h:7979
 
24269
+msgid "Santa Rosa"
 
24270
+msgstr ""
 
24271
+
 
24272
+#. A city in Honduras
 
24273
+#: ../data/Locations.xml.in.h:7981
 
24274
+msgid "Santa Rosa de Copán"
 
24275
+msgstr ""
 
24276
+
 
24277
+#. A city in Chile
 
24278
+#: ../data/Locations.xml.in.h:7983
 
24279
+msgid "Santa Teresa de Lo Ovalle"
 
24280
+msgstr ""
 
24281
+
 
24282
+#. A city in Spain
 
24283
+#: ../data/Locations.xml.in.h:7985
 
24284
+msgid "Santander"
 
24285
+msgstr ""
 
24286
+
 
24287
+#. A city in Pará in Brazil
 
24288
+#: ../data/Locations.xml.in.h:7987
 
24289
+msgid "Santarém"
 
24290
+msgstr ""
 
24291
+
 
24292
+#. A city in Cuba
 
24293
+#: ../data/Locations.xml.in.h:7989
 
24294
+msgid "Santiago de Cuba"
 
24295
+msgstr ""
 
24296
+
 
24297
+#. The capital of the Dominican Republic
 
24298
+#: ../data/Locations.xml.in.h:7991
 
24299
+msgid "Santo Domingo"
 
24300
+msgstr ""
 
24301
+
 
24302
+#. A city in São Paulo in Brazil
 
24303
+#: ../data/Locations.xml.in.h:7993
 
24304
+msgid "Santos"
 
24305
+msgstr ""
 
24306
+
 
24307
+#. A city in Hainan in China
 
24308
+#: ../data/Locations.xml.in.h:7995
 
24309
+msgid "Sanya"
 
24310
+msgstr ""
 
24311
+
 
24312
+#. ST - Sao Tome and Principe. The local (Portuguese) name is
 
24313
+#. "São Tomé and Príncipe". The official ISO 3166 short English
 
24314
+#. name does not have the accents.
 
24315
+#.
 
24316
+#: ../data/Locations.xml.in.h:8000
 
24317
+msgid "Sao Tome and Principe"
 
24318
+msgstr ""
 
24319
+
 
24320
+#. The capital of Bosnia and Herzegovina
 
24321
+#: ../data/Locations.xml.in.h:8002
 
24322
+msgid "Sarajevo"
 
24323
+msgstr ""
 
24324
+
 
24325
+#. A city in Iran
 
24326
+#: ../data/Locations.xml.in.h:8004
 
24327
+msgid "Sarakhs"
 
24328
+msgstr ""
 
24329
+
 
24330
+#. A city in New York in the United States
 
24331
+#: ../data/Locations.xml.in.h:8006
 
24332
+msgid "Saranac Lake"
 
24333
+msgstr ""
 
24334
+
 
24335
+#. A city in Florida in the United States
 
24336
+#: ../data/Locations.xml.in.h:8008
 
24337
+msgid "Sarasota"
 
24338
+msgstr ""
 
24339
+
 
24340
+#. A city in Russia
 
24341
+#: ../data/Locations.xml.in.h:8010
 
24342
+msgid "Saratov"
 
24343
+msgstr ""
 
24344
+
 
24345
+#. A city in Chad
 
24346
+#: ../data/Locations.xml.in.h:8012
 
24347
+msgid "Sarh"
 
24348
+msgstr ""
 
24349
+
 
24350
+#. A city in Ontario in Canada
 
24351
+#: ../data/Locations.xml.in.h:8014
 
24352
+msgid "Sarnia"
 
24353
+msgstr ""
 
24354
+
 
24355
+#. A state/province/territory in Canada
 
24356
+#: ../data/Locations.xml.in.h:8016
 
24357
+msgid "Saskatchewan"
 
24358
+msgstr ""
 
24359
+
 
24360
+#. A city in Saskatchewan in Canada
 
24361
+#: ../data/Locations.xml.in.h:8018
 
24362
+msgid "Saskatoon"
 
24363
+msgstr ""
 
24364
+
 
24365
+#. A city in Romania
 
24366
+#: ../data/Locations.xml.in.h:8020
 
24367
+msgid "Satu Mare"
 
24368
+msgstr ""
 
24369
+
 
24370
+#. SA - Saudi Arabia
 
24371
+#: ../data/Locations.xml.in.h:8022
 
24372
+msgid "Saudi Arabia"
 
24373
+msgstr ""
 
24374
+
 
24375
+#. A city in Ontario in Canada
 
24376
+#: ../data/Locations.xml.in.h:8024
 
24377
+msgid "Sault Sainte Marie"
 
24378
+msgstr ""
 
24379
+
 
24380
+#. A city in Michigan in the United States
 
24381
+#: ../data/Locations.xml.in.h:8026
 
24382
+msgid "Sault Ste. Marie"
 
24383
+msgstr ""
 
24384
+
 
24385
+#. A city in Illinois in the United States
 
24386
+#: ../data/Locations.xml.in.h:8028
 
24387
+msgid "Savanna"
 
24388
+msgstr ""
 
24389
+
 
24390
+#. A city in Georgia in the United States
 
24391
+#: ../data/Locations.xml.in.h:8030
 
24392
+msgid "Savannah"
 
24393
+msgstr ""
 
24394
+
 
24395
+#. A city in Finland
 
24396
+#: ../data/Locations.xml.in.h:8032
 
24397
+msgid "Savonlinna"
 
24398
+msgstr ""
 
24399
+
 
24400
+#. A city in Alaska in the United States
 
24401
+#: ../data/Locations.xml.in.h:8034
 
24402
+msgid "Savoonga"
 
24403
+msgstr ""
 
24404
+
 
24405
+#. A city in Japan
 
24406
+#: ../data/Locations.xml.in.h:8036
 
24407
+msgid "Sawada"
 
24408
+msgstr ""
 
24409
+
 
24410
+#. A state in Germany.  The local name is "Sachsen". Please
 
24411
+#. use that unless you know that it has a different name in
 
24412
+#. your language.
 
24413
+#.
 
24414
+#: ../data/Locations.xml.in.h:8041
 
24415
+msgid "Saxony"
 
24416
+msgstr ""
 
24417
+
 
24418
+#. A state in Germany.  The local name is "Sachsen-Anhalt".
 
24419
+#. Please use that unless you know that it has a different
 
24420
+#. name in your language.
 
24421
+#.
 
24422
+#: ../data/Locations.xml.in.h:8046
 
24423
+msgid "Saxony-Anhalt"
 
24424
+msgstr ""
 
24425
+
 
24426
+#. A city in Yemen
 
24427
+#: ../data/Locations.xml.in.h:8048
 
24428
+msgid "Say'un"
 
24429
+msgstr ""
 
24430
+
 
24431
+#. A city in Alaska in the United States
 
24432
+#: ../data/Locations.xml.in.h:8050
 
24433
+msgid "Scammon Bay"
 
24434
+msgstr ""
 
24435
+
 
24436
+#. A city in Oregon in the United States
 
24437
+#: ../data/Locations.xml.in.h:8052
 
24438
+msgid "Scappoose"
 
24439
+msgstr ""
 
24440
+
 
24441
+#. A city in Brussels, Flemish and Walloon Brabant in
 
24442
+#. Belgium
 
24443
+#.
 
24444
+#: ../data/Locations.xml.in.h:8056
 
24445
+msgid "Schaffen"
 
24446
+msgstr ""
 
24447
+
 
24448
+#. A city in Quebec in Canada
 
24449
+#: ../data/Locations.xml.in.h:8058
 
24450
+msgid "Schefferville"
 
24451
+msgstr ""
 
24452
+
 
24453
+#. A city in Schleswig-Holstein in Germany
 
24454
+#: ../data/Locations.xml.in.h:8060
 
24455
+msgid "Schleswig"
 
24456
+msgstr ""
 
24457
+
 
24458
+#. A state in Germany. The Danish name is "Slesvig-Holsten".
 
24459
+#: ../data/Locations.xml.in.h:8062
 
24460
+msgid "Schleswig-Holstein"
 
24461
+msgstr ""
 
24462
+
 
24463
+#. A state/province/territory in United Kingdom
 
24464
+#: ../data/Locations.xml.in.h:8064
 
24465
+msgid "Scotland"
 
24466
+msgstr ""
 
24467
+
 
24468
+#. A city in Nebraska in the United States
 
24469
+#: ../data/Locations.xml.in.h:8066
 
24470
+msgid "Scottsbluff"
 
24471
+msgstr ""
 
24472
+
 
24473
+#. A city in Arizona in the United States
 
24474
+#: ../data/Locations.xml.in.h:8068
 
24475
+msgid "Scottsdale"
 
24476
+msgstr ""
 
24477
+
 
24478
+#. A city in Arkansas in the United States
 
24479
+#: ../data/Locations.xml.in.h:8070
 
24480
+msgid "Searcy"
 
24481
+msgstr ""
 
24482
+
 
24483
+#. A city in Washington in the United States
 
24484
+#: ../data/Locations.xml.in.h:8072
 
24485
+msgid "Seattle"
 
24486
+msgstr ""
 
24487
+
 
24488
+#. A city in Missouri in the United States
 
24489
+#: ../data/Locations.xml.in.h:8074
 
24490
+msgid "Sedalia"
 
24491
+msgstr ""
 
24492
+
 
24493
+#. A city in Mecklenburg-Western Pomerania in Germany
 
24494
+#: ../data/Locations.xml.in.h:8076
 
24495
+msgid "Seebad Heringsdorf"
 
24496
+msgstr ""
 
24497
+
 
24498
+#. A city in Alberta in Canada
 
24499
+#: ../data/Locations.xml.in.h:8078
 
24500
+msgid "Seebe"
 
24501
+msgstr ""
 
24502
+
 
24503
+#. A city in Finland
 
24504
+#: ../data/Locations.xml.in.h:8080
 
24505
+msgid "Seinäjoki"
 
24506
+msgstr ""
 
24507
+
 
24508
+#. A city in Alaska in the United States
 
24509
+#: ../data/Locations.xml.in.h:8082
 
24510
+msgid "Selawik"
 
24511
+msgstr ""
 
24512
+
 
24513
+#. A city in Alaska in the United States
 
24514
+#: ../data/Locations.xml.in.h:8084
 
24515
+msgid "Seldovia"
 
24516
+msgstr ""
 
24517
+
 
24518
+#. A city in Botswana
 
24519
+#: ../data/Locations.xml.in.h:8086
 
24520
+msgid "Selebi-Phikwe"
 
24521
+msgstr ""
 
24522
+
 
24523
+#. A city in Pennsylvania in the United States
 
24524
+#: ../data/Locations.xml.in.h:8088
 
24525
+msgid "Selinsgrove"
 
24526
+msgstr ""
 
24527
+
 
24528
+#. A city in Iran.
 
24529
+#. The name is also written "سمنان".
 
24530
+#.
 
24531
+#: ../data/Locations.xml.in.h:8092
 
24532
+msgid "Semnan"
 
24533
+msgstr ""
 
24534
+
 
24535
+#. A city in Japan
 
24536
+#: ../data/Locations.xml.in.h:8094
 
24537
+msgid "Sendai"
 
24538
+msgstr ""
 
24539
+
 
24540
+#. SN - Senegal
 
24541
+#: ../data/Locations.xml.in.h:8096
 
24542
+msgid "Senegal"
 
24543
+msgstr ""
 
24544
+
 
24545
+#. A city in Quebec in Canada
 
24546
+#: ../data/Locations.xml.in.h:8098
 
24547
+msgid "Senneville"
 
24548
+msgstr ""
 
24549
+
 
24550
+#. The capital of South Korea.
 
24551
+#. "Seoul" is the traditional English name.
 
24552
+#. The local name in Korean is "Soul".
 
24553
+#.
 
24554
+#: ../data/Locations.xml.in.h:8103
 
24555
+msgid "Seoul"
 
24556
+msgstr ""
 
24557
+
 
24558
+#. A city in Malaysia
 
24559
+#: ../data/Locations.xml.in.h:8105
 
24560
+msgid "Sepang"
 
24561
+msgstr ""
 
24562
+
 
24563
+#. A city in Quebec in Canada
 
24564
+#: ../data/Locations.xml.in.h:8107
 
24565
+msgid "Sept-Îles"
 
24566
+msgstr ""
 
24567
+
 
24568
+#. RS - Serbia
 
24569
+#: ../data/Locations.xml.in.h:8109
 
24570
+msgid "Serbia"
 
24571
+msgstr ""
 
24572
+
 
24573
+#. A state/province/territory in Brazil
 
24574
+#: ../data/Locations.xml.in.h:8111
 
24575
+msgid "Sergipe"
 
24576
+msgstr ""
 
24577
+
 
24578
+#. A city in Algeria
 
24579
+#: ../data/Locations.xml.in.h:8113
 
24580
+msgid "Setif"
 
24581
+msgstr ""
 
24582
+
 
24583
+#. A city in Alaska in the United States
 
24584
+#: ../data/Locations.xml.in.h:8115
 
24585
+msgid "Seward"
 
24586
+msgstr ""
 
24587
+
 
24588
+#. SC - Seychelles
 
24589
+#: ../data/Locations.xml.in.h:8117
 
24590
+msgid "Seychelles"
 
24591
+msgstr ""
 
24592
+
 
24593
+#. A city in Tunisia
 
24594
+#: ../data/Locations.xml.in.h:8119
 
24595
+msgid "Sfax"
 
24596
+msgstr ""
 
24597
+
 
24598
+#. A state/province/territory in China
 
24599
+#: ../data/Locations.xml.in.h:8121
 
24600
+msgid "Shaanxi"
 
24601
+msgstr ""
 
24602
+
 
24603
+#. A city in Iran.
 
24604
+#. The name is also written "شهر بالا".
 
24605
+#.
 
24606
+#: ../data/Locations.xml.in.h:8125
 
24607
+msgid "Shahr-e Bala"
 
24608
+msgstr ""
 
24609
+
 
24610
+#. A city in Iran.
 
24611
+#. The name is also written "شهر كرد".
 
24612
+#.
 
24613
+#: ../data/Locations.xml.in.h:8129
 
24614
+msgid "Shahr-e Kord"
 
24615
+msgstr ""
 
24616
+
 
24617
+#. A state/province/territory in China
 
24618
+#: ../data/Locations.xml.in.h:8131
 
24619
+msgid "Shandong"
 
24620
+msgstr ""
 
24621
+
 
24622
+#. A city in Ireland.
 
24623
+#. The local name in Irish is "Sionainn".
 
24624
+#.
 
24625
+#: ../data/Locations.xml.in.h:8135
 
24626
+msgid "Shannon"
 
24627
+msgstr ""
 
24628
+
 
24629
+#. A city in Guangdong in China
 
24630
+#: ../data/Locations.xml.in.h:8137
 
24631
+msgid "Shantou"
 
24632
+msgstr ""
 
24633
+
 
24634
+#. A state/province/territory in China
 
24635
+#: ../data/Locations.xml.in.h:8139
 
24636
+msgid "Shanxi"
 
24637
+msgstr ""
 
24638
+
 
24639
+#. A city in the United Arab Emirates.
 
24640
+#. "Sharjah" is the traditional English name.
 
24641
+#. The local name in Arabic is "Ash Shariqah".
 
24642
+#.
 
24643
+#: ../data/Locations.xml.in.h:8144
 
24644
+msgid "Sharjah"
 
24645
+msgstr ""
 
24646
+
 
24647
+#. A city in Egypt
 
24648
+#: ../data/Locations.xml.in.h:8146
 
24649
+msgid "Sharm ash Shaykh"
 
24650
+msgstr ""
 
24651
+
 
24652
+#. A city in North West England in the United Kingdom
 
24653
+#: ../data/Locations.xml.in.h:8148
 
24654
+msgid "Shawbury"
 
24655
+msgstr ""
 
24656
+
 
24657
+#. A city in Quebec in Canada
 
24658
+#: ../data/Locations.xml.in.h:8150
 
24659
+msgid "Shawinigan"
 
24660
+msgstr ""
 
24661
+
 
24662
+#. A city in Oklahoma in the United States
 
24663
+#: ../data/Locations.xml.in.h:8152
 
24664
+msgid "Shawnee"
 
24665
+msgstr ""
 
24666
+
 
24667
+#. A city in Wisconsin in the United States
 
24668
+#: ../data/Locations.xml.in.h:8154
 
24669
+msgid "Sheboygan"
 
24670
+msgstr ""
 
24671
+
 
24672
+#. A city in Nova Scotia in Canada
 
24673
+#: ../data/Locations.xml.in.h:8156
 
24674
+msgid "Sheet Harbour"
 
24675
+msgstr ""
 
24676
+
 
24677
+#. A city in North Carolina in the United States
 
24678
+#: ../data/Locations.xml.in.h:8158
 
24679
+msgid "Shelby"
 
24680
+msgstr ""
 
24681
+
 
24682
+#. A city in Indiana in the United States
 
24683
+#: ../data/Locations.xml.in.h:8160
 
24684
+msgid "Shelbyville"
 
24685
+msgstr ""
 
24686
+
 
24687
+#. A city in Iowa in the United States
 
24688
+#: ../data/Locations.xml.in.h:8162
 
24689
+msgid "Sheldon"
 
24690
+msgstr ""
 
24691
+
 
24692
+#. A city in Western Australia in Australia
 
24693
+#: ../data/Locations.xml.in.h:8164
 
24694
+msgid "Shellborough"
 
24695
+msgstr ""
 
24696
+
 
24697
+#. A city in Washington in the United States
 
24698
+#: ../data/Locations.xml.in.h:8166
 
24699
+msgid "Shelton"
 
24700
+msgstr ""
 
24701
+
 
24702
+#. A city in Iowa in the United States
 
24703
+#: ../data/Locations.xml.in.h:8168
 
24704
+msgid "Shenandoah"
 
24705
+msgstr ""
 
24706
+
 
24707
+#. A city in Liaoning in China.
 
24708
+#. The name is also written "沈阳".
 
24709
+#.
 
24710
+#: ../data/Locations.xml.in.h:8172
 
24711
+msgid "Shenyang"
 
24712
+msgstr ""
 
24713
+
 
24714
+#. A city in Guangdong in China
 
24715
+#: ../data/Locations.xml.in.h:8174
 
24716
+msgid "Shenzhen"
 
24717
+msgstr ""
 
24718
+
 
24719
+#. A city in Quebec in Canada
 
24720
+#: ../data/Locations.xml.in.h:8176
 
24721
+msgid "Sherbrooke"
 
24722
+msgstr ""
 
24723
+
 
24724
+#. A city in Wyoming in the United States
 
24725
+#: ../data/Locations.xml.in.h:8178
 
24726
+msgid "Sheridan"
 
24727
+msgstr ""
 
24728
+
 
24729
+#. A city in Texas in the United States
 
24730
+#: ../data/Locations.xml.in.h:8180
 
24731
+msgid "Sherman"
 
24732
+msgstr ""
 
24733
+
 
24734
+#. A city in India.
 
24735
+#. The local name in Hindi is "शिमला"
 
24736
+#: ../data/Locations.xml.in.h:8183
 
24737
+msgid "Shimla"
 
24738
+msgstr ""
 
24739
+
 
24740
+#. A city in Yukon Territory in Canada
 
24741
+#: ../data/Locations.xml.in.h:8185
 
24742
+msgid "Shingle Point"
 
24743
+msgstr ""
 
24744
+
 
24745
+#. A city in Iran.
 
24746
+#. The name is also written "شیراز".
 
24747
+#.
 
24748
+#: ../data/Locations.xml.in.h:8189
 
24749
+msgid "Shiraz"
 
24750
+msgstr ""
 
24751
+
 
24752
+#. A city in New York in the United States
 
24753
+#: ../data/Locations.xml.in.h:8191
 
24754
+msgid "Shirley"
 
24755
+msgstr ""
 
24756
+
 
24757
+#. A city in Japan
 
24758
+#: ../data/Locations.xml.in.h:8193
 
24759
+msgid "Shiroi"
 
24760
+msgstr ""
 
24761
+
 
24762
+#. A city in Alaska in the United States
 
24763
+#: ../data/Locations.xml.in.h:8195
 
24764
+msgid "Shishmaref"
 
24765
+msgstr ""
 
24766
+
 
24767
+#. A city in Israel
 
24768
+#: ../data/Locations.xml.in.h:8197
 
24769
+msgid "Shizzafon"
 
24770
+msgstr ""
 
24771
+
 
24772
+#. A city in East and South East England in the United
 
24773
+#. Kingdom
 
24774
+#.
 
24775
+#: ../data/Locations.xml.in.h:8201
 
24776
+msgid "Shoreham-by-Sea"
 
24777
+msgstr ""
 
24778
+
 
24779
+#. A city in Arizona in the United States
 
24780
+#: ../data/Locations.xml.in.h:8203
 
24781
+msgid "Show Low"
 
24782
+msgstr ""
 
24783
+
 
24784
+#. A Japanese research station in Antarctica. The string is
 
24785
+#. only used in places where "Antarctica" is already clear
 
24786
+#. from context.
 
24787
+#.
 
24788
+#: ../data/Locations.xml.in.h:8208
 
24789
+msgid "Showa Station"
 
24790
+msgstr ""
 
24791
+
 
24792
+#. A city in Louisiana in the United States
 
24793
+#: ../data/Locations.xml.in.h:8210
 
24794
+msgid "Shreveport"
 
24795
+msgstr ""
 
24796
+
 
24797
+#. A city in Kazakhstan
 
24798
+#: ../data/Locations.xml.in.h:8212
 
24799
+msgid "Shymkent"
 
24800
+msgstr ""
 
24801
+
 
24802
+#. A city in Romania
 
24803
+#: ../data/Locations.xml.in.h:8214
 
24804
+msgid "Sibiu"
 
24805
+msgstr ""
 
24806
+
 
24807
+#. A city in Malaysia
 
24808
+#: ../data/Locations.xml.in.h:8216
 
24809
+msgid "Sibu"
 
24810
+msgstr ""
 
24811
+
 
24812
+#. A state/province/territory in China
 
24813
+#: ../data/Locations.xml.in.h:8218
 
24814
+msgid "Sichuan"
 
24815
+msgstr ""
 
24816
+
 
24817
+#. A city in Algeria
 
24818
+#: ../data/Locations.xml.in.h:8220
 
24819
+msgid "Sidi Amrane"
 
24820
+msgstr ""
 
24821
+
 
24822
+#. A city in Algeria
 
24823
+#: ../data/Locations.xml.in.h:8222
 
24824
+msgid "Sidi Bel Abbes"
 
24825
+msgstr ""
 
24826
+
 
24827
+#. A city in Cambodia
 
24828
+#: ../data/Locations.xml.in.h:8224
 
24829
+msgid "Siemreab"
 
24830
+msgstr ""
 
24831
+
 
24832
+#. SL - Sierra Leone
 
24833
+#: ../data/Locations.xml.in.h:8226
 
24834
+msgid "Sierra Leone"
 
24835
+msgstr ""
 
24836
+
 
24837
+#. A city in Arizona in the United States
 
24838
+#: ../data/Locations.xml.in.h:8228
 
24839
+msgid "Sierra Vista"
 
24840
+msgstr ""
 
24841
+
 
24842
+#. A city in Arkansas in the United States
 
24843
+#: ../data/Locations.xml.in.h:8230
 
24844
+msgid "Siloam Springs"
 
24845
+msgstr ""
 
24846
+
 
24847
+#. A city in Minnesota in the United States
 
24848
+#: ../data/Locations.xml.in.h:8232
 
24849
+msgid "Silver Bay"
 
24850
+msgstr ""
 
24851
+
 
24852
+#. A city in New Mexico in the United States
 
24853
+#: ../data/Locations.xml.in.h:8234
 
24854
+msgid "Silver City"
 
24855
+msgstr ""
 
24856
+
 
24857
+#. A city in Ukraine
 
24858
+#: ../data/Locations.xml.in.h:8236
 
24859
+msgid "Simferopol'"
 
24860
+msgstr ""
 
24861
+
 
24862
+#. A city in California in the United States
 
24863
+#: ../data/Locations.xml.in.h:8238
 
24864
+msgid "Simi Valley"
 
24865
+msgstr ""
 
24866
+
 
24867
+#. A state/province/territory in Mexico
 
24868
+#: ../data/Locations.xml.in.h:8240
 
24869
+msgid "Sinaloa"
 
24870
+msgstr ""
 
24871
+
 
24872
+#. A city in Portugal
 
24873
+#: ../data/Locations.xml.in.h:8242
 
24874
+msgid "Sintra"
 
24875
+msgstr ""
 
24876
+
 
24877
+#. A city in Switzerland
 
24878
+#: ../data/Locations.xml.in.h:8244
 
24879
+msgid "Sion"
 
24880
+msgstr ""
 
24881
+
 
24882
+#. A city in Iowa in the United States
 
24883
+#: ../data/Locations.xml.in.h:8246
 
24884
+msgid "Sioux City"
 
24885
+msgstr ""
 
24886
+
 
24887
+#. A city in South Dakota in the United States
 
24888
+#: ../data/Locations.xml.in.h:8248
 
24889
+msgid "Sioux Falls"
 
24890
+msgstr ""
 
24891
+
 
24892
+#. A city in Ontario in Canada
 
24893
+#: ../data/Locations.xml.in.h:8250
 
24894
+msgid "Sioux Lookout"
 
24895
+msgstr ""
 
24896
+
 
24897
+#. A city in Wisconsin in the United States
 
24898
+#: ../data/Locations.xml.in.h:8252
 
24899
+msgid "Siren"
 
24900
+msgstr ""
 
24901
+
 
24902
+#. A city in South Dakota in the United States
 
24903
+#: ../data/Locations.xml.in.h:8254
 
24904
+msgid "Sisseton"
 
24905
+msgstr ""
 
24906
+
 
24907
+#. A city in Malaysia
 
24908
+#: ../data/Locations.xml.in.h:8256
 
24909
+msgid "Sitiawan"
 
24910
+msgstr ""
 
24911
+
 
24912
+#. A city in Alaska in the United States
 
24913
+#: ../data/Locations.xml.in.h:8258
 
24914
+msgid "Sitka"
 
24915
+msgstr ""
 
24916
+
 
24917
+#. A city in Norway
 
24918
+#: ../data/Locations.xml.in.h:8260
 
24919
+msgid "Skagen"
 
24920
+msgstr ""
 
24921
+
 
24922
+#. A city in Alaska in the United States
 
24923
+#: ../data/Locations.xml.in.h:8262
 
24924
+msgid "Skagway"
 
24925
+msgstr ""
 
24926
+
 
24927
+#. A city in Sweden
 
24928
+#: ../data/Locations.xml.in.h:8264
 
24929
+msgid "Skellefteå"
 
24930
+msgstr ""
 
24931
+
 
24932
+#. A city in Norway
 
24933
+#: ../data/Locations.xml.in.h:8266
 
24934
+msgid "Skien"
 
24935
+msgstr ""
 
24936
+
 
24937
+#. The capital of Macedonia
 
24938
+#: ../data/Locations.xml.in.h:8268
 
24939
+msgid "Skopje"
 
24940
+msgstr ""
 
24941
+
 
24942
+#. A city in Denmark
 
24943
+#: ../data/Locations.xml.in.h:8270
 
24944
+msgid "Skrydstrup"
 
24945
+msgstr ""
 
24946
+
 
24947
+#. A city in Greece
 
24948
+#: ../data/Locations.xml.in.h:8272
 
24949
+msgid "Skíathos"
 
24950
+msgstr ""
 
24951
+
 
24952
+#. A city in Sweden
 
24953
+#: ../data/Locations.xml.in.h:8274
 
24954
+msgid "Skövde"
 
24955
+msgstr ""
 
24956
+
 
24957
+#. A city in Alberta in Canada
 
24958
+#: ../data/Locations.xml.in.h:8276
 
24959
+msgid "Slave Lake"
 
24960
+msgstr ""
 
24961
+
 
24962
+#. A city in Minnesota in the United States
 
24963
+#: ../data/Locations.xml.in.h:8278
 
24964
+msgid "Slayton"
 
24965
+msgstr ""
 
24966
+
 
24967
+#. A city in Alaska in the United States
 
24968
+#: ../data/Locations.xml.in.h:8280
 
24969
+msgid "Sleetmute"
 
24970
+msgstr ""
 
24971
+
 
24972
+#. A city in Slovakia
 
24973
+#: ../data/Locations.xml.in.h:8282
 
24974
+msgid "Sliač"
 
24975
+msgstr ""
 
24976
+
 
24977
+#. A city in Louisiana in the United States
 
24978
+#: ../data/Locations.xml.in.h:8284
 
24979
+msgid "Slidell"
 
24980
+msgstr ""
 
24981
+
 
24982
+#. SK - Slovakia
 
24983
+#: ../data/Locations.xml.in.h:8286
 
24984
+msgid "Slovakia"
 
24985
+msgstr ""
 
24986
+
 
24987
+#. SI - Slovenia
 
24988
+#: ../data/Locations.xml.in.h:8288
 
24989
+msgid "Slovenia"
 
24990
+msgstr ""
 
24991
+
 
24992
+#. A city in British Columbia in Canada
 
24993
+#: ../data/Locations.xml.in.h:8290
 
24994
+msgid "Smithers"
 
24995
+msgstr ""
 
24996
+
 
24997
+#. A city in North Carolina in the United States
 
24998
+#: ../data/Locations.xml.in.h:8292
 
24999
+msgid "Smithfield"
 
25000
+msgstr ""
 
25001
+
 
25002
+#. A city in Tennessee in the United States
 
25003
+#: ../data/Locations.xml.in.h:8294
 
25004
+msgid "Smyrna"
 
25005
+msgstr ""
 
25006
+
 
25007
+#. A city in Yukon Territory in Canada
 
25008
+#: ../data/Locations.xml.in.h:8296
 
25009
+msgid "Snag"
 
25010
+msgstr ""
 
25011
+
 
25012
+#. A city in Texas in the United States
 
25013
+#: ../data/Locations.xml.in.h:8298
 
25014
+msgid "Snyder"
 
25015
+msgstr ""
 
25016
+
 
25017
+#. A city in Idaho in the United States
 
25018
+#: ../data/Locations.xml.in.h:8300
 
25019
+msgid "Soda Springs"
 
25020
+msgstr ""
 
25021
+
 
25022
+#. The capital of Bulgaria.
 
25023
+#. "Sofia" is the traditional English name.
 
25024
+#. The local name is "Sofiya".
 
25025
+#.
 
25026
+#: ../data/Locations.xml.in.h:8305
 
25027
+msgid "Sofia"
 
25028
+msgstr ""
 
25029
+
 
25030
+#. A city in Norway
 
25031
+#: ../data/Locations.xml.in.h:8307
 
25032
+msgid "Sola"
 
25033
+msgstr ""
 
25034
+
 
25035
+#. A city in Alaska in the United States
 
25036
+#: ../data/Locations.xml.in.h:8309
 
25037
+msgid "Soldotna"
 
25038
+msgstr ""
 
25039
+
 
25040
+#. SB - Solomon Islands
 
25041
+#: ../data/Locations.xml.in.h:8311
 
25042
+msgid "Solomon Islands"
 
25043
+msgstr ""
 
25044
+
 
25045
+#. A city in Bangladesh
 
25046
+#: ../data/Locations.xml.in.h:8313
 
25047
+msgid "Solpur"
 
25048
+msgstr ""
 
25049
+
 
25050
+#. SO - Somalia
 
25051
+#: ../data/Locations.xml.in.h:8315
 
25052
+msgid "Somalia"
 
25053
+msgstr ""
 
25054
+
 
25055
+#. A city in Kentucky in the United States
 
25056
+#: ../data/Locations.xml.in.h:8317
 
25057
+msgid "Somerset"
 
25058
+msgstr ""
 
25059
+
 
25060
+#. A city in New Jersey in the United States
 
25061
+#: ../data/Locations.xml.in.h:8319
 
25062
+msgid "Somerville"
 
25063
+msgstr ""
 
25064
+
 
25065
+#. A city in Tanzania
 
25066
+#: ../data/Locations.xml.in.h:8321
 
25067
+msgid "Songea"
 
25068
+msgstr ""
 
25069
+
 
25070
+#. A city in Denmark
 
25071
+#: ../data/Locations.xml.in.h:8323
 
25072
+msgid "Sottrupskov"
 
25073
+msgstr ""
 
25074
+
 
25075
+#. ZA - South Africa
 
25076
+#: ../data/Locations.xml.in.h:8325
 
25077
+msgid "South Africa"
 
25078
+msgstr ""
 
25079
+
 
25080
+#. A state/province/territory in Australia
 
25081
+#: ../data/Locations.xml.in.h:8327
 
25082
+msgid "South Australia"
 
25083
+msgstr ""
 
25084
+
 
25085
+#. A city in Indiana in the United States
 
25086
+#: ../data/Locations.xml.in.h:8329
 
25087
+msgid "South Bend"
 
25088
+msgstr ""
 
25089
+
 
25090
+#. A state/province/territory in United States
 
25091
+#: ../data/Locations.xml.in.h:8331
 
25092
+msgid "South Carolina"
 
25093
+msgstr ""
 
25094
+
 
25095
+#. A state/province/territory in United States
 
25096
+#: ../data/Locations.xml.in.h:8333
 
25097
+msgid "South Dakota"
 
25098
+msgstr ""
 
25099
+
 
25100
+#. GS - South Georgia and the South Sandwich Islands, a British
 
25101
+#. territory in the South Atlantic.
 
25102
+#.
 
25103
+#: ../data/Locations.xml.in.h:8337
 
25104
+msgid "South Georgia and the South Sandwich Islands"
 
25105
+msgstr ""
 
25106
+
 
25107
+#. A city in Michigan in the United States
 
25108
+#: ../data/Locations.xml.in.h:8339
 
25109
+msgid "South Haven"
 
25110
+msgstr ""
 
25111
+
 
25112
+#. A city in Virginia in the United States
 
25113
+#: ../data/Locations.xml.in.h:8341
 
25114
+msgid "South Hill"
 
25115
+msgstr ""
 
25116
+
 
25117
+#. KR - The Republic of Korea, aka South Korea
 
25118
+#: ../data/Locations.xml.in.h:8343
 
25119
+msgid "South Korea"
 
25120
+msgstr ""
 
25121
+
 
25122
+#. A city in California in the United States
 
25123
+#: ../data/Locations.xml.in.h:8345
 
25124
+msgid "South Lake Tahoe"
 
25125
+msgstr ""
 
25126
+
 
25127
+#. A state/province/territory in United Kingdom
 
25128
+#: ../data/Locations.xml.in.h:8347
 
25129
+msgid "South and South West England"
 
25130
+msgstr ""
 
25131
+
 
25132
+#. A city in East and South East England in the United
 
25133
+#. Kingdom
 
25134
+#.
 
25135
+#: ../data/Locations.xml.in.h:8351
 
25136
+msgid "Southampton"
 
25137
+msgstr ""
 
25138
+
 
25139
+#. A city in Greece
 
25140
+#: ../data/Locations.xml.in.h:8353
 
25141
+msgid "Soúda"
 
25142
+msgstr ""
 
25143
+
 
25144
+#. ES - Spain
 
25145
+#: ../data/Locations.xml.in.h:8355
 
25146
+msgid "Spain"
 
25147
+msgstr ""
 
25148
+
 
25149
+#. A city in Rhineland-Palatinate in Germany
 
25150
+#: ../data/Locations.xml.in.h:8357
 
25151
+msgid "Spangdahlem"
 
25152
+msgstr ""
 
25153
+
 
25154
+#. A city in Iowa in the United States
 
25155
+#: ../data/Locations.xml.in.h:8359
 
25156
+msgid "Spencer"
 
25157
+msgstr ""
 
25158
+
 
25159
+#. A city in Alberta in Canada
 
25160
+#: ../data/Locations.xml.in.h:8361
 
25161
+msgid "Spirit River"
 
25162
+msgstr ""
 
25163
+
 
25164
+#. A city in Saskatchewan in Canada
 
25165
+#: ../data/Locations.xml.in.h:8363
 
25166
+msgid "Spiritwood"
 
25167
+msgstr ""
 
25168
+
 
25169
+#. A city in Croatia
 
25170
+#: ../data/Locations.xml.in.h:8365
 
25171
+msgid "Split"
 
25172
+msgstr ""
 
25173
+
 
25174
+#. A city in Texas in the United States
 
25175
+#: ../data/Locations.xml.in.h:8367
 
25176
+msgid "Spofford"
 
25177
+msgstr ""
 
25178
+
 
25179
+#. A city in Washington in the United States
 
25180
+#: ../data/Locations.xml.in.h:8369
 
25181
+msgid "Spokane"
 
25182
+msgstr ""
 
25183
+
 
25184
+#. A city in Italy
 
25185
+#: ../data/Locations.xml.in.h:8371
 
25186
+msgid "Sporminore"
 
25187
+msgstr ""
 
25188
+
 
25189
+#. A city in Arkansas in the United States
 
25190
+#: ../data/Locations.xml.in.h:8373
 
25191
+msgid "Springdale"
 
25192
+msgstr ""
 
25193
+
 
25194
+#. A city in South Africa
 
25195
+#: ../data/Locations.xml.in.h:8375
 
25196
+msgid "Springs"
 
25197
+msgstr ""
 
25198
+
 
25199
+#. A city in British Columbia in Canada
 
25200
+#: ../data/Locations.xml.in.h:8377
 
25201
+msgid "Squamish"
 
25202
+msgstr ""
 
25203
+
 
25204
+#. The capital of Sri Lanka
 
25205
+#: ../data/Locations.xml.in.h:8379
 
25206
+msgid "Sri Jayewardenepura Kotte"
 
25207
+msgstr ""
 
25208
+
 
25209
+#. LK - Sri Lanka
 
25210
+#: ../data/Locations.xml.in.h:8381
 
25211
+msgid "Sri Lanka"
 
25212
+msgstr ""
 
25213
+
 
25214
+#. A city in India.
 
25215
+#. The local name in Dogri is "श्रीनगर"
 
25216
+#. The local name in Urdu is "شرینگر"
 
25217
+#: ../data/Locations.xml.in.h:8385
 
25218
+msgid "Srinagar"
 
25219
+msgstr ""
 
25220
+
 
25221
+#. A city in Missouri in the United States
 
25222
+#: ../data/Locations.xml.in.h:8387
 
25223
+msgid "St. Louis"
 
25224
+msgstr ""
 
25225
+
 
25226
+#. A city in Switzerland
 
25227
+#: ../data/Locations.xml.in.h:8389
 
25228
+msgid "St. Moritz"
 
25229
+msgstr ""
 
25230
+
 
25231
+#. A city in Virginia in the United States
 
25232
+#: ../data/Locations.xml.in.h:8391
 
25233
+msgid "Stafford"
 
25234
+msgstr ""
 
25235
+
 
25236
+#. A city in Connecticut in the United States
 
25237
+#: ../data/Locations.xml.in.h:8393
 
25238
+msgid "Stamford"
 
25239
+msgstr ""
 
25240
+
 
25241
+#. A city in Washington in the United States
 
25242
+#: ../data/Locations.xml.in.h:8395
 
25243
+msgid "Stampede"
 
25244
+msgstr ""
 
25245
+
 
25246
+#. A city in East and South East England in the United
 
25247
+#. Kingdom
 
25248
+#.
 
25249
+#: ../data/Locations.xml.in.h:8399
 
25250
+msgid "Stansted Mountfitchet"
 
25251
+msgstr ""
 
25252
+
 
25253
+#. A city in Minnesota in the United States
 
25254
+#: ../data/Locations.xml.in.h:8401
 
25255
+msgid "Stanton"
 
25256
+msgstr ""
 
25257
+
 
25258
+#. A city in Minnesota in the United States
 
25259
+#: ../data/Locations.xml.in.h:8403
 
25260
+msgid "Staples"
 
25261
+msgstr ""
 
25262
+
 
25263
+#. A city in Pennsylvania in the United States
 
25264
+#: ../data/Locations.xml.in.h:8405
 
25265
+msgid "State College"
 
25266
+msgstr ""
 
25267
+
 
25268
+#. A state/province/territory in Australia
 
25269
+#: ../data/Locations.xml.in.h:8407
 
25270
+msgctxt "State in Australia"
 
25271
+msgid "Victoria"
 
25272
+msgstr ""
 
25273
+
 
25274
+#. A state in Belgium. local name (nl): Antwerpen. local name
 
25275
+#. (fr): Anvers. local name (de): Antwerpen.
 
25276
+#.
 
25277
+#: ../data/Locations.xml.in.h:8411
 
25278
+msgctxt "State in Belgium"
 
25279
+msgid "Antwerp"
 
25280
+msgstr ""
 
25281
+
 
25282
+#. A state/province/territory in Belgium
 
25283
+#: ../data/Locations.xml.in.h:8413
 
25284
+msgctxt "State in Belgium"
 
25285
+msgid "Luxembourg"
 
25286
+msgstr ""
 
25287
+
 
25288
+#. A state/province/territory in Brazil
 
25289
+#: ../data/Locations.xml.in.h:8415
 
25290
+msgctxt "State in Brazil"
 
25291
+msgid "Acre"
 
25292
+msgstr ""
 
25293
+
 
25294
+#. A state/province/territory in Brazil
 
25295
+#: ../data/Locations.xml.in.h:8417
 
25296
+msgctxt "State in Brazil"
 
25297
+msgid "Bahia"
 
25298
+msgstr ""
 
25299
+
 
25300
+#. A state/province/territory in Brazil
 
25301
+#: ../data/Locations.xml.in.h:8419
 
25302
+msgctxt "State in Brazil"
 
25303
+msgid "Distrito Federal"
 
25304
+msgstr ""
 
25305
+
 
25306
+#. A state/province/territory in Brazil
 
25307
+#: ../data/Locations.xml.in.h:8421
 
25308
+msgctxt "State in Brazil"
 
25309
+msgid "Mato Grosso"
 
25310
+msgstr ""
 
25311
+
 
25312
+#. A state/province/territory in Brazil
 
25313
+#: ../data/Locations.xml.in.h:8423
 
25314
+msgctxt "State in Brazil"
 
25315
+msgid "Mato Grosso do Sul"
 
25316
+msgstr ""
 
25317
+
 
25318
+#. A state/province/territory in Brazil
 
25319
+#: ../data/Locations.xml.in.h:8425
 
25320
+msgctxt "State in Brazil"
 
25321
+msgid "Pernambuco"
 
25322
+msgstr ""
 
25323
+
 
25324
+#. A state/province/territory in Brazil
 
25325
+#: ../data/Locations.xml.in.h:8427
 
25326
+msgctxt "State in Brazil"
 
25327
+msgid "Rio de Janeiro"
 
25328
+msgstr ""
 
25329
+
 
25330
+#. A state/province/territory in Brazil
 
25331
+#: ../data/Locations.xml.in.h:8429
 
25332
+msgctxt "State in Brazil"
 
25333
+msgid "Roraima"
 
25334
+msgstr ""
 
25335
+
 
25336
+#. A state/province/territory in Brazil
 
25337
+#: ../data/Locations.xml.in.h:8431
 
25338
+msgctxt "State in Brazil"
 
25339
+msgid "São Paulo"
 
25340
+msgstr ""
 
25341
+
 
25342
+#. A state/province/territory in Canada
 
25343
+#: ../data/Locations.xml.in.h:8433
 
25344
+msgctxt "State in Canada"
 
25345
+msgid "Ontario"
 
25346
+msgstr ""
 
25347
+
 
25348
+#. A state/province/territory in Canada
 
25349
+#: ../data/Locations.xml.in.h:8435
 
25350
+msgctxt "State in Canada"
 
25351
+msgid "Quebec"
 
25352
+msgstr ""
 
25353
+
 
25354
+#. A state/province/territory in China
 
25355
+#: ../data/Locations.xml.in.h:8437
 
25356
+msgctxt "State in China"
 
25357
+msgid "Beijing"
 
25358
+msgstr ""
 
25359
+
 
25360
+#. A state/province/territory in China
 
25361
+#: ../data/Locations.xml.in.h:8439
 
25362
+msgctxt "State in China"
 
25363
+msgid "Chongqing"
 
25364
+msgstr ""
 
25365
+
 
25366
+#. A state/province/territory in China
 
25367
+#: ../data/Locations.xml.in.h:8441
 
25368
+msgctxt "State in China"
 
25369
+msgid "Shanghai"
 
25370
+msgstr ""
 
25371
+
 
25372
+#. A state/province/territory in China
 
25373
+#: ../data/Locations.xml.in.h:8443
 
25374
+msgctxt "State in China"
 
25375
+msgid "Tianjin"
 
25376
+msgstr ""
 
25377
+
 
25378
+#. A state/province/territory in Germany
 
25379
+#: ../data/Locations.xml.in.h:8445
 
25380
+msgctxt "State in Germany"
 
25381
+msgid "Berlin"
 
25382
+msgstr ""
 
25383
+
 
25384
+#. A state/province/territory in Germany
 
25385
+#: ../data/Locations.xml.in.h:8447
 
25386
+msgctxt "State in Germany"
 
25387
+msgid "Bremen"
 
25388
+msgstr ""
 
25389
+
 
25390
+#. A state/province/territory in Germany
 
25391
+#: ../data/Locations.xml.in.h:8449
 
25392
+msgctxt "State in Germany"
 
25393
+msgid "Hamburg"
 
25394
+msgstr ""
 
25395
+
 
25396
+#. A state/province/territory in Mexico
 
25397
+#: ../data/Locations.xml.in.h:8451
 
25398
+msgctxt "State in Mexico"
 
25399
+msgid "Aguascalientes"
 
25400
+msgstr ""
 
25401
+
 
25402
+#. A state/province/territory in Mexico
 
25403
+#: ../data/Locations.xml.in.h:8453
 
25404
+msgctxt "State in Mexico"
 
25405
+msgid "Campeche"
 
25406
+msgstr ""
 
25407
+
 
25408
+#. A state/province/territory in Mexico
 
25409
+#: ../data/Locations.xml.in.h:8455
 
25410
+msgctxt "State in Mexico"
 
25411
+msgid "Chihuahua"
 
25412
+msgstr ""
 
25413
+
 
25414
+#. A state/province/territory in Mexico
 
25415
+#: ../data/Locations.xml.in.h:8457
 
25416
+msgctxt "State in Mexico"
 
25417
+msgid "Colima"
 
25418
+msgstr ""
 
25419
+
 
25420
+#. A state/province/territory in Mexico
 
25421
+#: ../data/Locations.xml.in.h:8459
 
25422
+msgctxt "State in Mexico"
 
25423
+msgid "Distrito Federal"
 
25424
+msgstr ""
 
25425
+
 
25426
+#. A state/province/territory in Mexico
 
25427
+#: ../data/Locations.xml.in.h:8461
 
25428
+msgctxt "State in Mexico"
 
25429
+msgid "Durango"
 
25430
+msgstr ""
 
25431
+
 
25432
+#. A state/province/territory in Mexico
 
25433
+#: ../data/Locations.xml.in.h:8463
 
25434
+msgctxt "State in Mexico"
 
25435
+msgid "Oaxaca"
 
25436
+msgstr ""
 
25437
+
 
25438
+#. A state/province/territory in Mexico
 
25439
+#: ../data/Locations.xml.in.h:8465
 
25440
+msgctxt "State in Mexico"
 
25441
+msgid "Puebla"
 
25442
+msgstr ""
 
25443
+
 
25444
+#. A state/province/territory in Mexico
 
25445
+#: ../data/Locations.xml.in.h:8467
 
25446
+msgctxt "State in Mexico"
 
25447
+msgid "Querétaro"
 
25448
+msgstr ""
 
25449
+
 
25450
+#. A state/province/territory in Mexico
 
25451
+#: ../data/Locations.xml.in.h:8469
 
25452
+msgctxt "State in Mexico"
 
25453
+msgid "San Luis Potosí"
 
25454
+msgstr ""
 
25455
+
 
25456
+#. A state/province/territory in Mexico
 
25457
+#: ../data/Locations.xml.in.h:8471
 
25458
+msgctxt "State in Mexico"
 
25459
+msgid "Sonora"
 
25460
+msgstr ""
 
25461
+
 
25462
+#. A state/province/territory in Mexico
 
25463
+#: ../data/Locations.xml.in.h:8473
 
25464
+msgctxt "State in Mexico"
 
25465
+msgid "Veracruz"
 
25466
+msgstr ""
 
25467
+
 
25468
+#. A state/province/territory in Mexico
 
25469
+#: ../data/Locations.xml.in.h:8475
 
25470
+msgctxt "State in Mexico"
 
25471
+msgid "Zacatecas"
 
25472
+msgstr ""
 
25473
+
 
25474
+#. A state/province/territory in United States
 
25475
+#: ../data/Locations.xml.in.h:8477
 
25476
+msgctxt "State in United States"
 
25477
+msgid "Georgia"
 
25478
+msgstr ""
 
25479
+
 
25480
+#. A state/province/territory in United States
 
25481
+#: ../data/Locations.xml.in.h:8479
 
25482
+msgctxt "State in United States"
 
25483
+msgid "Indiana"
 
25484
+msgstr ""
 
25485
+
 
25486
+#. A state/province/territory in United States
 
25487
+#: ../data/Locations.xml.in.h:8481
 
25488
+msgctxt "State in United States"
 
25489
+msgid "New York"
 
25490
+msgstr ""
 
25491
+
 
25492
+#. A state/province/territory in United States
 
25493
+#: ../data/Locations.xml.in.h:8483
 
25494
+msgctxt "State in United States"
 
25495
+msgid "Washington"
 
25496
+msgstr ""
 
25497
+
 
25498
+#. A state/province/territory in United States
 
25499
+#: ../data/Locations.xml.in.h:8485
 
25500
+msgctxt "State in United States"
 
25501
+msgid "Wyoming"
 
25502
+msgstr ""
 
25503
+
 
25504
+#. A city in Georgia in the United States
 
25505
+#: ../data/Locations.xml.in.h:8487
 
25506
+msgid "Statesboro"
 
25507
+msgstr ""
 
25508
+
 
25509
+#. A city in North Carolina in the United States
 
25510
+#: ../data/Locations.xml.in.h:8489
 
25511
+msgid "Statesville"
 
25512
+msgstr ""
 
25513
+
 
25514
+#. A city in Virginia in the United States
 
25515
+#: ../data/Locations.xml.in.h:8491
 
25516
+msgid "Staunton"
 
25517
+msgstr ""
 
25518
+
 
25519
+#. A city in South and South West England in the United
 
25520
+#. Kingdom
 
25521
+#.
 
25522
+#: ../data/Locations.xml.in.h:8495
 
25523
+msgid "Staverton"
 
25524
+msgstr ""
 
25525
+
 
25526
+#. A city in Russia.
 
25527
+#. The local name in Russian is "Ставрополь".
 
25528
+#.
 
25529
+#: ../data/Locations.xml.in.h:8499
 
25530
+msgid "Stavropol'"
 
25531
+msgstr ""
 
25532
+
 
25533
+#. A city in Colorado in the United States
 
25534
+#: ../data/Locations.xml.in.h:8501
 
25535
+msgid "Steamboat Springs"
 
25536
+msgstr ""
 
25537
+
 
25538
+#. A city in British Columbia in Canada
 
25539
+#: ../data/Locations.xml.in.h:8503
 
25540
+msgid "Stephen"
 
25541
+msgstr ""
 
25542
+
 
25543
+#. A city in Illinois in the United States
 
25544
+#: ../data/Locations.xml.in.h:8505
 
25545
+msgid "Sterling"
 
25546
+msgstr ""
 
25547
+
 
25548
+#. A city in Michigan in the United States
 
25549
+#: ../data/Locations.xml.in.h:8507
 
25550
+msgid "Sterling Heights"
 
25551
+msgstr ""
 
25552
+
 
25553
+#. A city in Wisconsin in the United States
 
25554
+#: ../data/Locations.xml.in.h:8509
 
25555
+msgid "Stevens Point"
 
25556
+msgstr ""
 
25557
+
 
25558
+#. A city in British Columbia in Canada
 
25559
+#: ../data/Locations.xml.in.h:8511
 
25560
+msgid "Steveston"
 
25561
+msgstr ""
 
25562
+
 
25563
+#. A city in British Columbia in Canada
 
25564
+#: ../data/Locations.xml.in.h:8513
 
25565
+msgid "Stewart"
 
25566
+msgstr ""
 
25567
+
 
25568
+#. A city in Oklahoma in the United States
 
25569
+#: ../data/Locations.xml.in.h:8515
 
25570
+msgid "Stillwater"
 
25571
+msgstr ""
 
25572
+
 
25573
+#. The capital of Sweden
 
25574
+#: ../data/Locations.xml.in.h:8517
 
25575
+msgid "Stockholm"
 
25576
+msgstr ""
 
25577
+
 
25578
+#. A city in Norway
 
25579
+#: ../data/Locations.xml.in.h:8519
 
25580
+msgid "Stokka"
 
25581
+msgstr ""
 
25582
+
 
25583
+#. A city in Quebec in Canada
 
25584
+#: ../data/Locations.xml.in.h:8521
 
25585
+msgid "Stoneham"
 
25586
+msgstr ""
 
25587
+
 
25588
+#. A city in Saskatchewan in Canada
 
25589
+#: ../data/Locations.xml.in.h:8523
 
25590
+msgid "Stony Rapids"
 
25591
+msgstr ""
 
25592
+
 
25593
+#. A city in Iowa in the United States
 
25594
+#: ../data/Locations.xml.in.h:8525
 
25595
+msgid "Storm Lake"
 
25596
+msgstr ""
 
25597
+
 
25598
+#. A city in Scotland in the United Kingdom
 
25599
+#: ../data/Locations.xml.in.h:8527
 
25600
+msgid "Stornoway"
 
25601
+msgstr ""
 
25602
+
 
25603
+#. A city in France
 
25604
+#: ../data/Locations.xml.in.h:8529
 
25605
+msgid "Strasbourg"
 
25606
+msgstr ""
 
25607
+
 
25608
+#. A city in Russia.
 
25609
+#. The local name in Russian is "Стригино".
 
25610
+#.
 
25611
+#: ../data/Locations.xml.in.h:8533
 
25612
+msgid "Strigino"
 
25613
+msgstr ""
 
25614
+
 
25615
+#. A city in Florida in the United States
 
25616
+#: ../data/Locations.xml.in.h:8535
 
25617
+msgid "Stuart"
 
25618
+msgstr ""
 
25619
+
 
25620
+#. A city in Wisconsin in the United States
 
25621
+#: ../data/Locations.xml.in.h:8537
 
25622
+msgid "Sturgeon Bay"
 
25623
+msgstr ""
 
25624
+
 
25625
+#. A city in Michigan in the United States
 
25626
+#: ../data/Locations.xml.in.h:8539
 
25627
+msgid "Sturgis"
 
25628
+msgstr ""
 
25629
+
 
25630
+#. A city in the Philippines
 
25631
+#: ../data/Locations.xml.in.h:8541
 
25632
+msgid "Subic"
 
25633
+msgstr ""
 
25634
+
 
25635
+#. A city in Romania
 
25636
+#: ../data/Locations.xml.in.h:8543
 
25637
+msgid "Suceava"
 
25638
+msgstr ""
 
25639
+
 
25640
+#. The capital of Bolivia
 
25641
+#: ../data/Locations.xml.in.h:8545
 
25642
+msgid "Sucre"
 
25643
+msgstr ""
 
25644
+
 
25645
+#. SD - Sudan
 
25646
+#: ../data/Locations.xml.in.h:8547
 
25647
+msgid "Sudan"
 
25648
+msgstr ""
 
25649
+
 
25650
+#. A city in Ontario in Canada
 
25651
+#: ../data/Locations.xml.in.h:8549
 
25652
+msgid "Sudbury"
 
25653
+msgstr ""
 
25654
+
 
25655
+#. A city in Virginia in the United States
 
25656
+#: ../data/Locations.xml.in.h:8551
 
25657
+msgid "Suffolk"
 
25658
+msgstr ""
 
25659
+
 
25660
+#. A city in Texas in the United States
 
25661
+#: ../data/Locations.xml.in.h:8553
 
25662
+msgid "Sulphur Springs"
 
25663
+msgstr ""
 
25664
+
 
25665
+#. A city in Scotland in the United Kingdom
 
25666
+#: ../data/Locations.xml.in.h:8555
 
25667
+msgid "Sumburgh"
 
25668
+msgstr ""
 
25669
+
 
25670
+#. A city in British Columbia in Canada
 
25671
+#: ../data/Locations.xml.in.h:8557
 
25672
+msgid "Summerland"
 
25673
+msgstr ""
 
25674
+
 
25675
+#. A city in Prince Edward Island in Canada
 
25676
+#: ../data/Locations.xml.in.h:8559
 
25677
+msgid "Summerside"
 
25678
+msgstr ""
 
25679
+
 
25680
+#. A city in Sweden
 
25681
+#: ../data/Locations.xml.in.h:8561
 
25682
+msgid "Sundsvall"
 
25683
+msgstr ""
 
25684
+
 
25685
+#. A city in California in the United States
 
25686
+#: ../data/Locations.xml.in.h:8563
 
25687
+msgid "Sunnyvale"
 
25688
+msgstr ""
 
25689
+
 
25690
+#. A city in Wisconsin in the United States
 
25691
+#: ../data/Locations.xml.in.h:8565
 
25692
+msgid "Superior"
 
25693
+msgstr ""
 
25694
+
 
25695
+#. A city in Thailand
 
25696
+#: ../data/Locations.xml.in.h:8567
 
25697
+msgid "Surat Thani"
 
25698
+msgstr ""
 
25699
+
 
25700
+#. A city in Russia.
 
25701
+#. The local name in Russian is "Сургут".
 
25702
+#.
 
25703
+#: ../data/Locations.xml.in.h:8571
 
25704
+msgid "Surgut"
 
25705
+msgstr ""
 
25706
+
 
25707
+#. SR - Suriname
 
25708
+#: ../data/Locations.xml.in.h:8573
 
25709
+msgid "Suriname"
 
25710
+msgstr ""
 
25711
+
 
25712
+#. A city in New Jersey in the United States
 
25713
+#: ../data/Locations.xml.in.h:8575
 
25714
+msgid "Sussex"
 
25715
+msgstr ""
 
25716
+
 
25717
+#. SJ - Svalbard and Jan Mayen. Svalbard is an island in the
 
25718
+#. Arctic Ocean which is a part of Norway with unusual status
 
25719
+#. internationally.
 
25720
+#.
 
25721
+#: ../data/Locations.xml.in.h:8580
 
25722
+msgid "Svalbard and Jan Mayen"
 
25723
+msgstr ""
 
25724
+
 
25725
+#. A city in Norway
 
25726
+#: ../data/Locations.xml.in.h:8582
 
25727
+msgid "Svartnes"
 
25728
+msgstr ""
 
25729
+
 
25730
+#. A city in Norway
 
25731
+#: ../data/Locations.xml.in.h:8584
 
25732
+msgid "Svolvær"
 
25733
+msgstr ""
 
25734
+
 
25735
+#. A city in Manitoba in Canada
 
25736
+#: ../data/Locations.xml.in.h:8586
 
25737
+msgid "Swan River"
 
25738
+msgstr ""
 
25739
+
 
25740
+#. SZ - Swaziland
 
25741
+#: ../data/Locations.xml.in.h:8588
 
25742
+msgid "Swaziland"
 
25743
+msgstr ""
 
25744
+
 
25745
+#. SE - Sweden
 
25746
+#: ../data/Locations.xml.in.h:8590
 
25747
+msgid "Sweden"
 
25748
+msgstr ""
 
25749
+
 
25750
+#. A city in Texas in the United States
 
25751
+#: ../data/Locations.xml.in.h:8592
 
25752
+msgid "Sweetwater"
 
25753
+msgstr ""
 
25754
+
 
25755
+#. A city in Saskatchewan in Canada
 
25756
+#: ../data/Locations.xml.in.h:8594
 
25757
+msgid "Swift Current"
 
25758
+msgstr ""
 
25759
+
 
25760
+#. CH - Switzerland
 
25761
+#: ../data/Locations.xml.in.h:8596
 
25762
+msgid "Switzerland"
 
25763
+msgstr ""
 
25764
+
 
25765
+#. A city in Russia
 
25766
+#: ../data/Locations.xml.in.h:8598
 
25767
+msgid "Syktyvkar"
 
25768
+msgstr ""
 
25769
+
 
25770
+#. A city in Georgia in the United States
 
25771
+#: ../data/Locations.xml.in.h:8600
 
25772
+msgid "Sylvania"
 
25773
+msgstr ""
 
25774
+
 
25775
+#. A city in New York in the United States
 
25776
+#: ../data/Locations.xml.in.h:8602
 
25777
+msgid "Syracuse"
 
25778
+msgstr ""
 
25779
+
 
25780
+#. SY - Syrian Arab Republic
 
25781
+#: ../data/Locations.xml.in.h:8604
 
25782
+msgid "Syria"
 
25783
+msgstr ""
 
25784
+
 
25785
+#. A city in Poland
 
25786
+#: ../data/Locations.xml.in.h:8606
 
25787
+msgid "Szczecin"
 
25788
+msgstr ""
 
25789
+
 
25790
+#. A city in Hungary
 
25791
+#: ../data/Locations.xml.in.h:8608
 
25792
+msgid "Szeged"
 
25793
+msgstr ""
 
25794
+
 
25795
+#. A city in Hungary
 
25796
+#: ../data/Locations.xml.in.h:8610
 
25797
+msgid "Szolnok"
 
25798
+msgstr ""
 
25799
+
 
25800
+#. A city in Greece
 
25801
+#: ../data/Locations.xml.in.h:8612
 
25802
+msgid "Sámos"
 
25803
+msgstr ""
 
25804
+
 
25805
+#. A city in Amazonas in Brazil
 
25806
+#: ../data/Locations.xml.in.h:8614
 
25807
+msgid "São Félix"
 
25808
+msgstr ""
 
25809
+
 
25810
+#. A city in Amazonas in Brazil
 
25811
+#: ../data/Locations.xml.in.h:8616
 
25812
+msgid "São Gabriel"
 
25813
+msgstr ""
 
25814
+
 
25815
+#. A city in São Paulo in Brazil
 
25816
+#: ../data/Locations.xml.in.h:8618
 
25817
+msgid "São José dos Campos"
 
25818
+msgstr ""
 
25819
+
 
25820
+#. A city in Maranhão in Brazil
 
25821
+#: ../data/Locations.xml.in.h:8620
 
25822
+msgid "São Luís"
 
25823
+msgstr ""
 
25824
+
 
25825
+#. A city in Rio de Janeiro in Brazil
 
25826
+#: ../data/Locations.xml.in.h:8622
 
25827
+msgid "São Pedro da Aldeia"
 
25828
+msgstr ""
 
25829
+
 
25830
+#. A city in Sweden
 
25831
+#: ../data/Locations.xml.in.h:8624
 
25832
+msgid "Söderhamn"
 
25833
+msgstr ""
 
25834
+
 
25835
+#. A city in Greenland
 
25836
+#: ../data/Locations.xml.in.h:8626
 
25837
+msgid "Søndre Strømfjord"
 
25838
+msgstr ""
 
25839
+
 
25840
+#. A city in Norway
 
25841
+#: ../data/Locations.xml.in.h:8628
 
25842
+msgid "Sørkjosen"
 
25843
+msgstr ""
 
25844
+
 
25845
+#. A city in the Faroe Islands
 
25846
+#: ../data/Locations.xml.in.h:8630
 
25847
+msgid "Sørvágur"
 
25848
+msgstr ""
 
25849
+
 
25850
+#. A city in Yemen
 
25851
+#: ../data/Locations.xml.in.h:8632
 
25852
+msgid "Ta'izz"
 
25853
+msgstr ""
 
25854
+
 
25855
+#. A city in Egypt
 
25856
+#: ../data/Locations.xml.in.h:8634
 
25857
+msgid "Taba"
 
25858
+msgstr ""
 
25859
+
 
25860
+#. A city in Tunisia
 
25861
+#: ../data/Locations.xml.in.h:8636
 
25862
+msgid "Tabarka"
 
25863
+msgstr ""
 
25864
+
 
25865
+#. A city in Iran
 
25866
+#: ../data/Locations.xml.in.h:8638
 
25867
+msgid "Tabas"
 
25868
+msgstr ""
 
25869
+
 
25870
+#. A state/province/territory in Mexico
 
25871
+#: ../data/Locations.xml.in.h:8640
 
25872
+msgid "Tabasco"
 
25873
+msgstr ""
 
25874
+
 
25875
+#. A city in Tanzania
 
25876
+#: ../data/Locations.xml.in.h:8642
 
25877
+msgid "Tabora"
 
25878
+msgstr ""
 
25879
+
 
25880
+#. A city in Iran.
 
25881
+#. The name is also written "تبريز".
 
25882
+#.
 
25883
+#: ../data/Locations.xml.in.h:8646
 
25884
+msgid "Tabriz"
 
25885
+msgstr ""
 
25886
+
 
25887
+#. A city in Saudi Arabia
 
25888
+#: ../data/Locations.xml.in.h:8648
 
25889
+msgid "Tabuk"
 
25890
+msgstr ""
 
25891
+
 
25892
+#. A city in Peru
 
25893
+#: ../data/Locations.xml.in.h:8650
 
25894
+msgid "Tacna"
 
25895
+msgstr ""
 
25896
+
 
25897
+#. A city in Washington in the United States
 
25898
+#: ../data/Locations.xml.in.h:8652
 
25899
+msgid "Tacoma"
 
25900
+msgstr ""
 
25901
+
 
25902
+#. A city in South Korea
 
25903
+#: ../data/Locations.xml.in.h:8654
 
25904
+msgid "Taegu"
 
25905
+msgstr ""
 
25906
+
 
25907
+#. This refers to the time zone in the Society Islands of
 
25908
+#. French Polynesia (including in particular the island of
 
25909
+#. Tahiti). This string is only used in places where
 
25910
+#. "French Polynesia" is already clear from context.
 
25911
+#.
 
25912
+#: ../data/Locations.xml.in.h:8660
 
25913
+msgid "Tahiti / Society Islands"
 
25914
+msgstr ""
 
25915
+
 
25916
+#. A city in Oklahoma in the United States
 
25917
+#: ../data/Locations.xml.in.h:8662
 
25918
+msgid "Tahlequah"
 
25919
+msgstr ""
 
25920
+
 
25921
+#. A city in Macau.
 
25922
+#. The local name in Chinese is "Dangzai / 氹仔".
 
25923
+#.
 
25924
+#: ../data/Locations.xml.in.h:8666
 
25925
+msgid "Taipa"
 
25926
+msgstr ""
 
25927
+
 
25928
+#. The capital of Taiwan.
 
25929
+#. The name is also written "臺北".
 
25930
+#.
 
25931
+#: ../data/Locations.xml.in.h:8670
 
25932
+msgid "Taipei"
 
25933
+msgstr ""
 
25934
+
 
25935
+#. TW - Taiwan, Province of China. (That's the official ISO
 
25936
+#. 3166 short English name.)
 
25937
+#.
 
25938
+#: ../data/Locations.xml.in.h:8674
 
25939
+msgid "Taiwan"
 
25940
+msgstr ""
 
25941
+
 
25942
+#. A city in Shanxi in China.
 
25943
+#. The name is also written "太原".
 
25944
+#.
 
25945
+#: ../data/Locations.xml.in.h:8678
 
25946
+msgid "Taiyuan"
 
25947
+msgstr ""
 
25948
+
 
25949
+#. TJ - Tajikistan
 
25950
+#: ../data/Locations.xml.in.h:8680
 
25951
+msgid "Tajikistan"
 
25952
+msgstr ""
 
25953
+
 
25954
+#. A city in Japan
 
25955
+#: ../data/Locations.xml.in.h:8682
 
25956
+msgid "Takamatsu"
 
25957
+msgstr ""
 
25958
+
 
25959
+#. A city in Japan
 
25960
+#: ../data/Locations.xml.in.h:8684
 
25961
+msgid "Takatsu"
 
25962
+msgstr ""
 
25963
+
 
25964
+#. A city in Alaska in the United States
 
25965
+#: ../data/Locations.xml.in.h:8686
 
25966
+msgid "Takotna"
 
25967
+msgstr ""
 
25968
+
 
25969
+#. A city in Peru
 
25970
+#: ../data/Locations.xml.in.h:8688
 
25971
+msgid "Talara"
 
25972
+msgstr ""
 
25973
+
 
25974
+#. A city in Spain
 
25975
+#: ../data/Locations.xml.in.h:8690
 
25976
+msgid "Talavera la Real"
 
25977
+msgstr ""
 
25978
+
 
25979
+#. A city in Alaska in the United States
 
25980
+#: ../data/Locations.xml.in.h:8692
 
25981
+msgid "Talkeetna"
 
25982
+msgstr ""
 
25983
+
 
25984
+#. A city in Florida in the United States
 
25985
+#: ../data/Locations.xml.in.h:8694
 
25986
+msgid "Tallahassee"
 
25987
+msgstr ""
 
25988
+
 
25989
+#. The capital of Estonia
 
25990
+#: ../data/Locations.xml.in.h:8696
 
25991
+msgid "Tallinn"
 
25992
+msgstr ""
 
25993
+
 
25994
+#. A city in Nunavut in Canada
 
25995
+#: ../data/Locations.xml.in.h:8698
 
25996
+msgid "Taloyoak"
 
25997
+msgstr ""
 
25998
+
 
25999
+#. A city in Spain
 
26000
+#: ../data/Locations.xml.in.h:8700
 
26001
+msgid "Tamaduste"
 
26002
+msgstr ""
 
26003
+
 
26004
+#. A city in Algeria
 
26005
+#: ../data/Locations.xml.in.h:8702
 
26006
+msgid "Tamanrasset"
 
26007
+msgstr ""
 
26008
+
 
26009
+#. A city in Italy
 
26010
+#: ../data/Locations.xml.in.h:8704
 
26011
+msgid "Tamaricciola"
 
26012
+msgstr ""
 
26013
+
 
26014
+#. A state/province/territory in Mexico
 
26015
+#: ../data/Locations.xml.in.h:8706
 
26016
+msgid "Tamaulipas"
 
26017
+msgstr ""
 
26018
+
 
26019
+#. A city in Senegal
 
26020
+#: ../data/Locations.xml.in.h:8708
 
26021
+msgid "Tambacounda"
 
26022
+msgstr ""
 
26023
+
 
26024
+#. A city in Florida in the United States
 
26025
+#: ../data/Locations.xml.in.h:8710
 
26026
+msgid "Tampa"
 
26027
+msgstr ""
 
26028
+
 
26029
+#. A city in Finland
 
26030
+#: ../data/Locations.xml.in.h:8712
 
26031
+msgid "Tampere"
 
26032
+msgstr ""
 
26033
+
 
26034
+#. A city in Tamaulipas in Mexico
 
26035
+#: ../data/Locations.xml.in.h:8714
 
26036
+msgid "Tampico"
 
26037
+msgstr ""
 
26038
+
 
26039
+#. A city in Saudi Arabia
 
26040
+#: ../data/Locations.xml.in.h:8716
 
26041
+msgid "Tamrah"
 
26042
+msgstr ""
 
26043
+
 
26044
+#. A city in New South Wales in Australia
 
26045
+#: ../data/Locations.xml.in.h:8718
 
26046
+msgid "Tamworth"
 
26047
+msgstr ""
 
26048
+
 
26049
+#. A city in Alaska in the United States
 
26050
+#: ../data/Locations.xml.in.h:8720
 
26051
+msgid "Tanana"
 
26052
+msgstr ""
 
26053
+
 
26054
+#. A city in Morocco.
 
26055
+#. "Tangier" is the traditional English name.
 
26056
+#. The local name is "Tanger".
 
26057
+#.
 
26058
+#: ../data/Locations.xml.in.h:8725
 
26059
+msgid "Tangier"
 
26060
+msgstr ""
 
26061
+
 
26062
+#. TZ - United Republic of Tanzania
 
26063
+#: ../data/Locations.xml.in.h:8727
 
26064
+msgid "Tanzania"
 
26065
+msgstr ""
 
26066
+
 
26067
+#. A city in Greece
 
26068
+#: ../data/Locations.xml.in.h:8729
 
26069
+msgid "Tanágra"
 
26070
+msgstr ""
 
26071
+
 
26072
+#. A city in New Mexico in the United States
 
26073
+#: ../data/Locations.xml.in.h:8731
 
26074
+msgid "Taos"
 
26075
+msgstr ""
 
26076
+
 
26077
+#. A city in Taiwan.
 
26078
+#. The name is also written "埔頂".
 
26079
+#.
 
26080
+#: ../data/Locations.xml.in.h:8735
 
26081
+msgid "Taoyuan"
 
26082
+msgstr ""
 
26083
+
 
26084
+#. A city in Chiapas in Mexico
 
26085
+#: ../data/Locations.xml.in.h:8737
 
26086
+msgid "Tapachula"
 
26087
+msgstr ""
 
26088
+
 
26089
+#. A city in Peru
 
26090
+#: ../data/Locations.xml.in.h:8739
 
26091
+msgid "Tarapoto"
 
26092
+msgstr ""
 
26093
+
 
26094
+#. A city in Acre in Brazil
 
26095
+#: ../data/Locations.xml.in.h:8741
 
26096
+msgid "Tarauacá"
 
26097
+msgstr ""
 
26098
+
 
26099
+#. A city in France
 
26100
+#: ../data/Locations.xml.in.h:8743
 
26101
+msgid "Tarbes"
 
26102
+msgstr ""
 
26103
+
 
26104
+#. A city in Bolivia
 
26105
+#: ../data/Locations.xml.in.h:8745
 
26106
+msgid "Tarija"
 
26107
+msgstr ""
 
26108
+
 
26109
+#. A city in Colorado in the United States
 
26110
+#: ../data/Locations.xml.in.h:8747
 
26111
+msgid "Tarryall"
 
26112
+msgstr ""
 
26113
+
 
26114
+#. A city in Estonia
 
26115
+#: ../data/Locations.xml.in.h:8749
 
26116
+msgid "Tartu"
 
26117
+msgstr ""
 
26118
+
 
26119
+#. A city in Italy
 
26120
+#: ../data/Locations.xml.in.h:8751
 
26121
+msgid "Tarvisio"
 
26122
+msgstr ""
 
26123
+
 
26124
+#. The capital of Uzbekistan.
 
26125
+#. "Tashkent" is the traditional English name.
 
26126
+#. The local name is "Toshkent".
 
26127
+#.
 
26128
+#: ../data/Locations.xml.in.h:8756
 
26129
+msgid "Tashkent"
 
26130
+msgstr ""
 
26131
+
 
26132
+#. A state/province/territory in Australia
 
26133
+#: ../data/Locations.xml.in.h:8758
 
26134
+msgid "Tasmania"
 
26135
+msgstr ""
 
26136
+
 
26137
+#. A city in Japan
 
26138
+#: ../data/Locations.xml.in.h:8760
 
26139
+msgid "Tateyama"
 
26140
+msgstr ""
 
26141
+
 
26142
+#. A city in Malaysia
 
26143
+#: ../data/Locations.xml.in.h:8762
 
26144
+msgid "Tawau"
 
26145
+msgstr ""
 
26146
+
 
26147
+#. A city in Illinois in the United States
 
26148
+#: ../data/Locations.xml.in.h:8764
 
26149
+msgid "Taylorville"
 
26150
+msgstr ""
 
26151
+
 
26152
+#. A city in Algeria
 
26153
+#: ../data/Locations.xml.in.h:8766
 
26154
+msgid "Tebessa"
 
26155
+msgstr ""
 
26156
+
 
26157
+#. A city in Austria
 
26158
+#: ../data/Locations.xml.in.h:8768
 
26159
+msgid "Teesdorf"
 
26160
+msgstr ""
 
26161
+
 
26162
+#. A city in Amazonas in Brazil
 
26163
+#: ../data/Locations.xml.in.h:8770
 
26164
+msgid "Tefé"
 
26165
+msgstr ""
 
26166
+
 
26167
+#. The capital of Honduras
 
26168
+#: ../data/Locations.xml.in.h:8772
 
26169
+msgid "Tegucigalpa"
 
26170
+msgstr ""
 
26171
+
 
26172
+#. The capital of Iran.
 
26173
+#. The name is also written "تهران".
 
26174
+#.
 
26175
+#: ../data/Locations.xml.in.h:8776
 
26176
+msgid "Tehran"
 
26177
+msgstr ""
 
26178
+
 
26179
+#. A city in Nebraska in the United States
 
26180
+#: ../data/Locations.xml.in.h:8778
 
26181
+msgid "Tekamah"
 
26182
+msgstr ""
 
26183
+
 
26184
+#. A city in Israel
 
26185
+#: ../data/Locations.xml.in.h:8780
 
26186
+msgid "Tel Aviv"
 
26187
+msgstr ""
 
26188
+
 
26189
+#. A city in Honduras
 
26190
+#: ../data/Locations.xml.in.h:8782
 
26191
+msgid "Tela"
 
26192
+msgstr ""
 
26193
+
 
26194
+#. A city in Ukraine
 
26195
+#: ../data/Locations.xml.in.h:8784
 
26196
+msgid "Telichka"
 
26197
+msgstr ""
 
26198
+
 
26199
+#. A city in Colorado in the United States
 
26200
+#: ../data/Locations.xml.in.h:8786
 
26201
+msgid "Telluride"
 
26202
+msgstr ""
 
26203
+
 
26204
+#. A city in Arizona in the United States
 
26205
+#: ../data/Locations.xml.in.h:8788
 
26206
+msgid "Tempe"
 
26207
+msgstr ""
 
26208
+
 
26209
+#. A city in Texas in the United States
 
26210
+#: ../data/Locations.xml.in.h:8790
 
26211
+msgid "Temple"
 
26212
+msgstr ""
 
26213
+
 
26214
+#. A city in Chile
 
26215
+#: ../data/Locations.xml.in.h:8792
 
26216
+msgid "Temuco"
 
26217
+msgstr ""
 
26218
+
 
26219
+#. A state/province/territory in United States
 
26220
+#: ../data/Locations.xml.in.h:8794
 
26221
+msgid "Tennessee"
 
26222
+msgstr ""
 
26223
+
 
26224
+#. A city in Turkey
 
26225
+#: ../data/Locations.xml.in.h:8796
 
26226
+msgid "Tepetarla"
 
26227
+msgstr ""
 
26228
+
 
26229
+#. A city in Piauí in Brazil
 
26230
+#: ../data/Locations.xml.in.h:8798
 
26231
+msgid "Teresina"
 
26232
+msgstr ""
 
26233
+
 
26234
+#. A city in Uzbekistan
 
26235
+#: ../data/Locations.xml.in.h:8800
 
26236
+msgid "Termiz"
 
26237
+msgstr ""
 
26238
+
 
26239
+#. A city in Newfoundland and Labrador in Canada
 
26240
+#: ../data/Locations.xml.in.h:8802
 
26241
+msgid "Terra Nova"
 
26242
+msgstr ""
 
26243
+
 
26244
+#. A city in British Columbia in Canada
 
26245
+#: ../data/Locations.xml.in.h:8804
 
26246
+msgid "Terrace"
 
26247
+msgstr ""
 
26248
+
 
26249
+#. A city in Indiana in the United States
 
26250
+#: ../data/Locations.xml.in.h:8806
 
26251
+msgid "Terre Haute"
 
26252
+msgstr ""
 
26253
+
 
26254
+#. A city in Texas in the United States
 
26255
+#: ../data/Locations.xml.in.h:8808
 
26256
+msgid "Terrell"
 
26257
+msgstr ""
 
26258
+
 
26259
+#. A city in Yukon Territory in Canada
 
26260
+#: ../data/Locations.xml.in.h:8810
 
26261
+msgid "Teslin"
 
26262
+msgstr ""
 
26263
+
 
26264
+#. A city in New Jersey in the United States
 
26265
+#: ../data/Locations.xml.in.h:8812
 
26266
+msgid "Teterboro"
 
26267
+msgstr ""
 
26268
+
 
26269
+#. A city in Morocco
 
26270
+#: ../data/Locations.xml.in.h:8814
 
26271
+msgid "Tetouan"
 
26272
+msgstr ""
 
26273
+
 
26274
+#. A city in Arkansas in the United States
 
26275
+#: ../data/Locations.xml.in.h:8816
 
26276
+msgid "Texarkana"
 
26277
+msgstr ""
 
26278
+
 
26279
+#. A state/province/territory in United States
 
26280
+#: ../data/Locations.xml.in.h:8818
 
26281
+msgid "Texas"
 
26282
+msgstr ""
 
26283
+
 
26284
+#. TH - Thailand
 
26285
+#: ../data/Locations.xml.in.h:8820
 
26286
+msgid "Thailand"
 
26287
+msgstr ""
 
26288
+
 
26289
+#. A city in Oregon in the United States
 
26290
+#: ../data/Locations.xml.in.h:8822
 
26291
+msgid "The Dalles"
 
26292
+msgstr ""
 
26293
+
 
26294
+#. The capital of the Netherlands.
 
26295
+#. "The Hague" is the traditional English name.
 
26296
+#. The local name in Dutch is "'s-Gravenhage".
 
26297
+#.
 
26298
+#: ../data/Locations.xml.in.h:8827
 
26299
+msgid "The Hague"
 
26300
+msgstr ""
 
26301
+
 
26302
+#. A city in the British Virgin Islands
 
26303
+#: ../data/Locations.xml.in.h:8829
 
26304
+msgid "The Mill"
 
26305
+msgstr ""
 
26306
+
 
26307
+#. A city in Manitoba in Canada
 
26308
+#: ../data/Locations.xml.in.h:8831
 
26309
+msgid "The Pas"
 
26310
+msgstr ""
 
26311
+
 
26312
+#. The capital of Anguilla
 
26313
+#: ../data/Locations.xml.in.h:8833
 
26314
+msgid "The Valley"
 
26315
+msgstr ""
 
26316
+
 
26317
+#. A city in Florida in the United States
 
26318
+#: ../data/Locations.xml.in.h:8835
 
26319
+msgid "The Villages"
 
26320
+msgstr ""
 
26321
+
 
26322
+#. A city in Nebraska in the United States
 
26323
+#: ../data/Locations.xml.in.h:8837
 
26324
+msgid "Thedford"
 
26325
+msgstr ""
 
26326
+
 
26327
+#. A city in Greece
 
26328
+#: ../data/Locations.xml.in.h:8839
 
26329
+msgid "Thessaloníki"
 
26330
+msgstr ""
 
26331
+
 
26332
+#. A city in Minnesota in the United States
 
26333
+#: ../data/Locations.xml.in.h:8841
 
26334
+msgid "Thief River Falls"
 
26335
+msgstr ""
 
26336
+
 
26337
+#. A city in India.
 
26338
+#. The local name in Malayalam is "തിരുവനന്തപുരം".
 
26339
+#.
 
26340
+#: ../data/Locations.xml.in.h:8845
 
26341
+msgid "Thiruvananthapuram"
 
26342
+msgstr ""
 
26343
+
 
26344
+#. A city in Georgia in the United States
 
26345
+#: ../data/Locations.xml.in.h:8847
 
26346
+msgid "Thomaston"
 
26347
+msgstr ""
 
26348
+
 
26349
+#. A city in Manitoba in Canada
 
26350
+#: ../data/Locations.xml.in.h:8849
 
26351
+msgid "Thompson"
 
26352
+msgstr ""
 
26353
+
 
26354
+#. A city in Georgia in the United States
 
26355
+#: ../data/Locations.xml.in.h:8851
 
26356
+msgid "Thomson"
 
26357
+msgstr ""
 
26358
+
 
26359
+#. A city in California in the United States
 
26360
+#: ../data/Locations.xml.in.h:8853
 
26361
+msgid "Thousand Oaks"
 
26362
+msgstr ""
 
26363
+
 
26364
+#. A city in Alberta in Canada
 
26365
+#: ../data/Locations.xml.in.h:8855
 
26366
+msgid "Three Hills"
 
26367
+msgstr ""
 
26368
+
 
26369
+#. The timezone at the Thule US Air Force Base on the west
 
26370
+#. coast of Greenland.
 
26371
+#.
 
26372
+#: ../data/Locations.xml.in.h:8859
 
26373
+msgid "Thule AFB"
 
26374
+msgstr ""
 
26375
+
 
26376
+#. A city in Ontario in Canada
 
26377
+#: ../data/Locations.xml.in.h:8861
 
26378
+msgid "Thunder Bay"
 
26379
+msgstr ""
 
26380
+
 
26381
+#. A state in Germany.  The local name is "Thüringen". Please
 
26382
+#. use that unless you know that it has a different name in
 
26383
+#. your language.
 
26384
+#.
 
26385
+#: ../data/Locations.xml.in.h:8866
 
26386
+msgid "Thuringia"
 
26387
+msgstr ""
 
26388
+
 
26389
+#. A city in Algeria
 
26390
+#: ../data/Locations.xml.in.h:8868
 
26391
+msgid "Tiaret"
 
26392
+msgstr ""
 
26393
+
 
26394
+#. A city in Prince Edward Island in Canada
 
26395
+#: ../data/Locations.xml.in.h:8870
 
26396
+msgid "Tignish"
 
26397
+msgstr ""
 
26398
+
 
26399
+#. A city in Baja California in Mexico
 
26400
+#: ../data/Locations.xml.in.h:8872
 
26401
+msgid "Tijuana"
 
26402
+msgstr ""
 
26403
+
 
26404
+#. A city in Guatemala
 
26405
+#: ../data/Locations.xml.in.h:8874
 
26406
+msgid "Tikal"
 
26407
+msgstr ""
 
26408
+
 
26409
+#. A city in Russia
 
26410
+#: ../data/Locations.xml.in.h:8876
 
26411
+msgid "Tiksi"
 
26412
+msgstr ""
 
26413
+
 
26414
+#. A city in Washington in the United States
 
26415
+#: ../data/Locations.xml.in.h:8878
 
26416
+msgid "Tillicum"
 
26417
+msgstr ""
 
26418
+
 
26419
+#. This represents the time zone in the Brazilian state of
 
26420
+#. Acre. See the comment on "Brasília Time" for more
 
26421
+#. details. This string is only used in places where
 
26422
+#. "Brazil" is already clear from context.
 
26423
+#.
 
26424
+#: ../data/Locations.xml.in.h:8884
 
26425
+msgctxt "Timezone"
 
26426
+msgid "Acre"
 
26427
+msgstr ""
 
26428
+
 
26429
+#. This represents the time zone in the Brazilian state of
 
26430
+#. Bahia. See the comment on "Brasília Time" for more
 
26431
+#. details. This string is only used in places where
 
26432
+#. "Brazil" is already clear from context.
 
26433
+#.
 
26434
+#: ../data/Locations.xml.in.h:8890
 
26435
+msgctxt "Timezone"
 
26436
+msgid "Bahia"
 
26437
+msgstr ""
 
26438
+
 
26439
+#. This represents the time zone in the Brazilian state of
 
26440
+#. Mato Grosso. See the comment on "Brasília Time" for more
 
26441
+#. details. This string is only used in places where
 
26442
+#. "Brazil" is already clear from context.
 
26443
+#.
 
26444
+#: ../data/Locations.xml.in.h:8896
 
26445
+msgctxt "Timezone"
 
26446
+msgid "Mato Grosso"
 
26447
+msgstr ""
 
26448
+
 
26449
+#. This represents the time zone in the Brazilian state of
 
26450
+#. Mato Grosso do Sul. See the comment on "Brasília Time"
 
26451
+#. for more details. This string is only used in places
 
26452
+#. where "Brazil" is already clear from context.
 
26453
+#.
 
26454
+#: ../data/Locations.xml.in.h:8902
 
26455
+msgctxt "Timezone"
 
26456
+msgid "Mato Grosso do Sul"
 
26457
+msgstr ""
 
26458
+
 
26459
+#. This represents the time zone in the Brazilian state of
 
26460
+#. Pernambuco. See the comment on "Brasília Time" for more
 
26461
+#. details. This string is only used in places where
 
26462
+#. "Brazil" is already clear from context.
 
26463
+#.
 
26464
+#: ../data/Locations.xml.in.h:8908
 
26465
+msgctxt "Timezone"
 
26466
+msgid "Pernambuco"
 
26467
+msgstr ""
 
26468
+
 
26469
+#. This represents the time zone in the Brazilian state of
 
26470
+#. Roraima. See the comment on "Brasília Time" for more
 
26471
+#. details. This string is only used in places where
 
26472
+#. "Brazil" is already clear from context.
 
26473
+#.
 
26474
+#: ../data/Locations.xml.in.h:8914
 
26475
+msgctxt "Timezone"
 
26476
+msgid "Roraima"
 
26477
+msgstr ""
 
26478
+
 
26479
+#. A city in Algeria
 
26480
+#: ../data/Locations.xml.in.h:8916
 
26481
+msgid "Timimoun"
 
26482
+msgstr ""
 
26483
+
 
26484
+#. A city in Romania
 
26485
+#: ../data/Locations.xml.in.h:8918
 
26486
+msgid "Timişoara"
 
26487
+msgstr ""
 
26488
+
 
26489
+#. A city in Ontario in Canada
 
26490
+#: ../data/Locations.xml.in.h:8920
 
26491
+msgid "Timmins"
 
26492
+msgstr ""
 
26493
+
 
26494
+#. TL - Timor-Leste (formerly known as "East Timor")
 
26495
+#: ../data/Locations.xml.in.h:8922
 
26496
+msgid "Timor-Leste"
 
26497
+msgstr ""
 
26498
+
 
26499
+#. A city in Alaska in the United States
 
26500
+#: ../data/Locations.xml.in.h:8924
 
26501
+msgid "Tin City"
 
26502
+msgstr ""
 
26503
+
 
26504
+#. A city in Algeria
 
26505
+#: ../data/Locations.xml.in.h:8926
 
26506
+msgid "Tindouf"
 
26507
+msgstr ""
 
26508
+
 
26509
+#. The capital of Albania.
 
26510
+#. "Tirana" is the traditional English name.
 
26511
+#. The local name is "Tiranë".
 
26512
+#.
 
26513
+#: ../data/Locations.xml.in.h:8931
 
26514
+msgid "Tirana"
 
26515
+msgstr ""
 
26516
+
 
26517
+#. A city in Denmark
 
26518
+#: ../data/Locations.xml.in.h:8933
 
26519
+msgid "Tirstrup"
 
26520
+msgstr ""
 
26521
+
 
26522
+#. A city in India.
 
26523
+#. The local name in Tamil is "திருச்சிராப்பள்ளி".
 
26524
+#.
 
26525
+#: ../data/Locations.xml.in.h:8937
 
26526
+msgid "Tiruchchirappalli"
 
26527
+msgstr ""
 
26528
+
 
26529
+#. A city in Florida in the United States
 
26530
+#: ../data/Locations.xml.in.h:8939
 
26531
+msgid "Titusville"
 
26532
+msgstr ""
 
26533
+
 
26534
+#. A city in Montenegro
 
26535
+#: ../data/Locations.xml.in.h:8941
 
26536
+msgid "Tivat"
 
26537
+msgstr ""
 
26538
+
 
26539
+#. A state/province/territory in Mexico
 
26540
+#: ../data/Locations.xml.in.h:8943
 
26541
+msgid "Tlaxcala"
 
26542
+msgstr ""
 
26543
+
 
26544
+#. A city in Algeria
 
26545
+#: ../data/Locations.xml.in.h:8945
 
26546
+msgid "Tlemcen"
 
26547
+msgstr ""
 
26548
+
 
26549
+#. A city in Madagascar
 
26550
+#: ../data/Locations.xml.in.h:8947
 
26551
+msgid "Toamasina"
 
26552
+msgstr ""
 
26553
+
 
26554
+#. A city in Ontario in Canada
 
26555
+#: ../data/Locations.xml.in.h:8949
 
26556
+msgid "Tobermory"
 
26557
+msgstr ""
 
26558
+
 
26559
+#. This represents the time zone in the Brazilian state of
 
26560
+#. Tocantins. See the comment on "Brasília Time" for more
 
26561
+#. details. This string is only used in places where
 
26562
+#. "Brazil" is already clear from context.
 
26563
+#.
 
26564
+#: ../data/Locations.xml.in.h:8955
 
26565
+msgid "Tocantins"
 
26566
+msgstr ""
 
26567
+
 
26568
+#. A state/province/territory in Brazil
 
26569
+#: ../data/Locations.xml.in.h:8957
 
26570
+msgid "Tocantis"
 
26571
+msgstr ""
 
26572
+
 
26573
+#. A city in Panama
 
26574
+#: ../data/Locations.xml.in.h:8959
 
26575
+msgid "Tocumen"
 
26576
+msgstr ""
 
26577
+
 
26578
+#. A city in British Columbia in Canada
 
26579
+#: ../data/Locations.xml.in.h:8961
 
26580
+msgid "Tofino"
 
26581
+msgstr ""
 
26582
+
 
26583
+#. A city in Alaska in the United States
 
26584
+#: ../data/Locations.xml.in.h:8963
 
26585
+msgid "Togiak"
 
26586
+msgstr ""
 
26587
+
 
26588
+#. TG - Togo
 
26589
+#: ../data/Locations.xml.in.h:8965
 
26590
+msgid "Togo"
 
26591
+msgstr ""
 
26592
+
 
26593
+#. TK - Tokelau, a territory of New Zealand
 
26594
+#: ../data/Locations.xml.in.h:8967
 
26595
+msgid "Tokelau"
 
26596
+msgstr ""
 
26597
+
 
26598
+#. The capital of Japan
 
26599
+#: ../data/Locations.xml.in.h:8969
 
26600
+msgid "Tokyo"
 
26601
+msgstr ""
 
26602
+
 
26603
+#. A city in Madagascar
 
26604
+#: ../data/Locations.xml.in.h:8971
 
26605
+msgid "Tolanaro"
 
26606
+msgstr ""
 
26607
+
 
26608
+#. A city in Ohio in the United States
 
26609
+#: ../data/Locations.xml.in.h:8973
 
26610
+msgid "Toledo"
 
26611
+msgstr ""
 
26612
+
 
26613
+#. A city in México in Mexico
 
26614
+#: ../data/Locations.xml.in.h:8975
 
26615
+msgid "Toluca"
 
26616
+msgstr ""
 
26617
+
 
26618
+#. A city in Wisconsin in the United States
 
26619
+#: ../data/Locations.xml.in.h:8977
 
26620
+msgid "Tomahawk"
 
26621
+msgstr ""
 
26622
+
 
26623
+#. TO - Tonga
 
26624
+#: ../data/Locations.xml.in.h:8979
 
26625
+msgid "Tonga"
 
26626
+msgstr ""
 
26627
+
 
26628
+#. A city in Nevada in the United States
 
26629
+#: ../data/Locations.xml.in.h:8981
 
26630
+msgid "Tonopah"
 
26631
+msgstr ""
 
26632
+
 
26633
+#. A city in North East England in the United Kingdom
 
26634
+#: ../data/Locations.xml.in.h:8983
 
26635
+msgid "Topcliffe"
 
26636
+msgstr ""
 
26637
+
 
26638
+#. A city in Kansas in the United States
 
26639
+#: ../data/Locations.xml.in.h:8985
 
26640
+msgid "Topeka"
 
26641
+msgstr ""
 
26642
+
 
26643
+#. A city in Ontario in Canada
 
26644
+#: ../data/Locations.xml.in.h:8987
 
26645
+msgid "Toronto"
 
26646
+msgstr ""
 
26647
+
 
26648
+#. A city in Norway
 
26649
+#: ../data/Locations.xml.in.h:8989
 
26650
+msgid "Torp"
 
26651
+msgstr ""
 
26652
+
 
26653
+#. A city in California in the United States
 
26654
+#: ../data/Locations.xml.in.h:8991
 
26655
+msgid "Torrance"
 
26656
+msgstr ""
 
26657
+
 
26658
+#. A city in Spain
 
26659
+#: ../data/Locations.xml.in.h:8993
 
26660
+msgid "Torrejón del Rey"
 
26661
+msgstr ""
 
26662
+
 
26663
+#. A city in New Mexico in the United States
 
26664
+#: ../data/Locations.xml.in.h:8995
 
26665
+msgid "Torreon"
 
26666
+msgstr ""
 
26667
+
 
26668
+#. A city in Coahuila in Mexico
 
26669
+#: ../data/Locations.xml.in.h:8997
 
26670
+msgid "Torreón"
 
26671
+msgstr ""
 
26672
+
 
26673
+#. A city in Wyoming in the United States
 
26674
+#: ../data/Locations.xml.in.h:8999
 
26675
+msgid "Torrington"
 
26676
+msgstr ""
 
26677
+
 
26678
+#. A city in Japan
 
26679
+#: ../data/Locations.xml.in.h:9001
 
26680
+msgid "Tottori"
 
26681
+msgstr ""
 
26682
+
 
26683
+#. A city in Algeria
 
26684
+#: ../data/Locations.xml.in.h:9003
 
26685
+msgid "Touggourt"
 
26686
+msgstr ""
 
26687
+
 
26688
+#. A city in France
 
26689
+#: ../data/Locations.xml.in.h:9005
 
26690
+msgid "Toulouse"
 
26691
+msgstr ""
 
26692
+
 
26693
+#. A city in France
 
26694
+#: ../data/Locations.xml.in.h:9007
 
26695
+msgid "Tours"
 
26696
+msgstr ""
 
26697
+
 
26698
+#. A city in British Columbia in Canada
 
26699
+#: ../data/Locations.xml.in.h:9009
 
26700
+msgid "Tow Hill"
 
26701
+msgstr ""
 
26702
+
 
26703
+#. A city in Queensland in Australia
 
26704
+#: ../data/Locations.xml.in.h:9011
 
26705
+msgid "Townsville"
 
26706
+msgstr ""
 
26707
+
 
26708
+#. A city in Japan
 
26709
+#: ../data/Locations.xml.in.h:9013
 
26710
+msgid "Toyama"
 
26711
+msgstr ""
 
26712
+
 
26713
+#. A city in Japan
 
26714
+#: ../data/Locations.xml.in.h:9015
 
26715
+msgid "Toyooka"
 
26716
+msgstr ""
 
26717
+
 
26718
+#. A city in Tunisia
 
26719
+#: ../data/Locations.xml.in.h:9017
 
26720
+msgid "Tozeur"
 
26721
+msgstr ""
 
26722
+
 
26723
+#. A city in Turkey
 
26724
+#: ../data/Locations.xml.in.h:9019
 
26725
+msgid "Trabzon"
 
26726
+msgstr ""
 
26727
+
 
26728
+#. A city in Minnesota in the United States
 
26729
+#: ../data/Locations.xml.in.h:9021
 
26730
+msgid "Tracy"
 
26731
+msgstr ""
 
26732
+
 
26733
+#. A city in Thailand
 
26734
+#: ../data/Locations.xml.in.h:9023
 
26735
+msgid "Trang"
 
26736
+msgstr ""
 
26737
+
 
26738
+#. A city in Italy
 
26739
+#: ../data/Locations.xml.in.h:9025
 
26740
+msgid "Trapani"
 
26741
+msgstr ""
 
26742
+
 
26743
+#. A city in Michigan in the United States
 
26744
+#: ../data/Locations.xml.in.h:9027
 
26745
+msgid "Traverse City"
 
26746
+msgstr ""
 
26747
+
 
26748
+#. A city in Italy
 
26749
+#: ../data/Locations.xml.in.h:9029
 
26750
+msgid "Trevico"
 
26751
+msgstr ""
 
26752
+
 
26753
+#. A city in Italy
 
26754
+#: ../data/Locations.xml.in.h:9031
 
26755
+msgid "Treviso"
 
26756
+msgstr ""
 
26757
+
 
26758
+#. A city in Italy
 
26759
+#: ../data/Locations.xml.in.h:9033
 
26760
+msgid "Trieste"
 
26761
+msgstr ""
 
26762
+
 
26763
+#. A city in France
 
26764
+#: ../data/Locations.xml.in.h:9035
 
26765
+msgid "Trignac"
 
26766
+msgstr ""
 
26767
+
 
26768
+#. TT - Trinidad and Tobago
 
26769
+#: ../data/Locations.xml.in.h:9037
 
26770
+msgid "Trinidad and Tobago"
 
26771
+msgstr ""
 
26772
+
 
26773
+#. The capital of Libya.
 
26774
+#. "Tripoli" is the traditional English name.
 
26775
+#. The local name in Arabic is "Tarabulus / طرابلس".
 
26776
+#.
 
26777
+#: ../data/Locations.xml.in.h:9042
 
26778
+msgid "Tripoli"
 
26779
+msgstr ""
 
26780
+
 
26781
+#. A city in Quebec in Canada
 
26782
+#: ../data/Locations.xml.in.h:9044
 
26783
+msgid "Trois-Rivières"
 
26784
+msgstr ""
 
26785
+
 
26786
+#. A city in Mecklenburg-Western Pomerania in Germany
 
26787
+#: ../data/Locations.xml.in.h:9046
 
26788
+msgid "Trollenhagen"
 
26789
+msgstr ""
 
26790
+
 
26791
+#. A city in Norway
 
26792
+#: ../data/Locations.xml.in.h:9048
 
26793
+msgid "Tromsø"
 
26794
+msgstr ""
 
26795
+
 
26796
+#. A city in Norway
 
26797
+#: ../data/Locations.xml.in.h:9050
 
26798
+msgid "Trondheim"
 
26799
+msgstr ""
 
26800
+
 
26801
+#. A city in British Columbia in Canada
 
26802
+#: ../data/Locations.xml.in.h:9052
 
26803
+msgid "Trout Lake"
 
26804
+msgstr ""
 
26805
+
 
26806
+#. A city in France
 
26807
+#: ../data/Locations.xml.in.h:9054
 
26808
+msgid "Troyes"
 
26809
+msgstr ""
 
26810
+
 
26811
+#. A city in California in the United States
 
26812
+#: ../data/Locations.xml.in.h:9056
 
26813
+msgid "Truckee"
 
26814
+msgstr ""
 
26815
+
 
26816
+#. A city in Peru
 
26817
+#: ../data/Locations.xml.in.h:9058
 
26818
+msgid "Trujillo"
 
26819
+msgstr ""
 
26820
+
 
26821
+#. A city in New Mexico in the United States
 
26822
+#: ../data/Locations.xml.in.h:9060
 
26823
+msgid "Truth or Consequences"
 
26824
+msgstr ""
 
26825
+
 
26826
+#. A city in Botswana
 
26827
+#: ../data/Locations.xml.in.h:9062
 
26828
+msgid "Tshabong"
 
26829
+msgstr ""
 
26830
+
 
26831
+#. A city in Japan
 
26832
+#: ../data/Locations.xml.in.h:9064
 
26833
+msgid "Tsuiki"
 
26834
+msgstr ""
 
26835
+
 
26836
+#. A city in Arizona in the United States
 
26837
+#: ../data/Locations.xml.in.h:9066
 
26838
+msgid "Tucson"
 
26839
+msgstr ""
 
26840
+
 
26841
+#. A city in New Mexico in the United States
 
26842
+#: ../data/Locations.xml.in.h:9068
 
26843
+msgid "Tucumcari"
 
26844
+msgstr ""
 
26845
+
 
26846
+#. A city in Pará in Brazil
 
26847
+#: ../data/Locations.xml.in.h:9070
 
26848
+msgid "Tucuruí"
 
26849
+msgstr ""
 
26850
+
 
26851
+#. A city in Northwest Territories in Canada
 
26852
+#: ../data/Locations.xml.in.h:9072
 
26853
+msgid "Tuktoyaktuk"
 
26854
+msgstr ""
 
26855
+
 
26856
+#. A city in Romania
 
26857
+#: ../data/Locations.xml.in.h:9074
 
26858
+msgid "Tulcea"
 
26859
+msgstr ""
 
26860
+
 
26861
+#. A city in Austria
 
26862
+#: ../data/Locations.xml.in.h:9076
 
26863
+msgid "Tulln"
 
26864
+msgstr ""
 
26865
+
 
26866
+#. A city in Oklahoma in the United States
 
26867
+#: ../data/Locations.xml.in.h:9078
 
26868
+msgid "Tulsa"
 
26869
+msgstr ""
 
26870
+
 
26871
+#. A city in Peru
 
26872
+#: ../data/Locations.xml.in.h:9080
 
26873
+msgid "Tumbes"
 
26874
+msgstr ""
 
26875
+
 
26876
+#. A city in Mississippi in the United States
 
26877
+#: ../data/Locations.xml.in.h:9082
 
26878
+msgid "Tunica"
 
26879
+msgstr ""
 
26880
+
 
26881
+#. The capital of Tunisia
 
26882
+#: ../data/Locations.xml.in.h:9084
 
26883
+msgid "Tunis"
 
26884
+msgstr ""
 
26885
+
 
26886
+#. TN - Tunisia
 
26887
+#: ../data/Locations.xml.in.h:9086
 
26888
+msgid "Tunisia"
 
26889
+msgstr ""
 
26890
+
 
26891
+#. A city in Northwest Territories in Canada
 
26892
+#: ../data/Locations.xml.in.h:9088
 
26893
+msgid "Tununuk"
 
26894
+msgstr ""
 
26895
+
 
26896
+#. A city in Mississippi in the United States
 
26897
+#: ../data/Locations.xml.in.h:9090
 
26898
+msgid "Tupelo"
 
26899
+msgstr ""
 
26900
+
 
26901
+#. A city in Saudi Arabia
 
26902
+#: ../data/Locations.xml.in.h:9092
 
26903
+msgid "Turayf"
 
26904
+msgstr ""
 
26905
+
 
26906
+#. A city in Italy.
 
26907
+#. "Turin" is the traditional English name.
 
26908
+#. The local name is "Torino".
 
26909
+#.
 
26910
+#: ../data/Locations.xml.in.h:9097
 
26911
+msgid "Turin"
 
26912
+msgstr ""
 
26913
+
 
26914
+#. TR - Turkey
 
26915
+#: ../data/Locations.xml.in.h:9099
 
26916
+msgid "Turkey"
 
26917
+msgstr ""
 
26918
+
 
26919
+#. TM - Turkmenistan
 
26920
+#: ../data/Locations.xml.in.h:9101
 
26921
+msgid "Turkmenistan"
 
26922
+msgstr ""
 
26923
+
 
26924
+#. TC - Turks and Caicos Islands, a British territory in the
 
26925
+#. Caribbean
 
26926
+#.
 
26927
+#: ../data/Locations.xml.in.h:9105
 
26928
+msgid "Turks and Caicos Islands"
 
26929
+msgstr ""
 
26930
+
 
26931
+#. A city in Finland.
 
26932
+#. The local name in Swedish is "Åbo".
 
26933
+#.
 
26934
+#: ../data/Locations.xml.in.h:9109
 
26935
+msgid "Turku"
 
26936
+msgstr ""
 
26937
+
 
26938
+#. A city in Alabama in the United States
 
26939
+#: ../data/Locations.xml.in.h:9111
 
26940
+msgid "Tuscaloosa"
 
26941
+msgstr ""
 
26942
+
 
26943
+#. TV - Tuvalu
 
26944
+#: ../data/Locations.xml.in.h:9113
 
26945
+msgid "Tuvalu"
 
26946
+msgstr ""
 
26947
+
 
26948
+#. A city in Chiapas in Mexico
 
26949
+#: ../data/Locations.xml.in.h:9115
 
26950
+msgid "Tuxtla"
 
26951
+msgstr ""
 
26952
+
 
26953
+#. A city in California in the United States
 
26954
+#: ../data/Locations.xml.in.h:9117
 
26955
+msgid "Twentynine Palms"
 
26956
+msgstr ""
 
26957
+
 
26958
+#. A city in Newfoundland and Labrador in Canada
 
26959
+#: ../data/Locations.xml.in.h:9119
 
26960
+msgid "Twillingate"
 
26961
+msgstr ""
 
26962
+
 
26963
+#. A city in Idaho in the United States
 
26964
+#: ../data/Locations.xml.in.h:9121
 
26965
+msgid "Twin Falls"
 
26966
+msgstr ""
 
26967
+
 
26968
+#. A city in Minnesota in the United States
 
26969
+#: ../data/Locations.xml.in.h:9123
 
26970
+msgid "Two Harbors"
 
26971
+msgstr ""
 
26972
+
 
26973
+#. A city in Texas in the United States
 
26974
+#: ../data/Locations.xml.in.h:9125
 
26975
+msgid "Tyler"
 
26976
+msgstr ""
 
26977
+
 
26978
+#. A city in Cyprus
 
26979
+#: ../data/Locations.xml.in.h:9127
 
26980
+msgid "Tymbou"
 
26981
+msgstr ""
 
26982
+
 
26983
+#. A city in Russia
 
26984
+#: ../data/Locations.xml.in.h:9129
 
26985
+msgid "Tyumen"
 
26986
+msgstr ""
 
26987
+
 
26988
+#. A city in Romania
 
26989
+#: ../data/Locations.xml.in.h:9131
 
26990
+msgid "Târgu-Mureş"
 
26991
+msgstr ""
 
26992
+
 
26993
+#. The capital of the Faroe Islands
 
26994
+#: ../data/Locations.xml.in.h:9133
 
26995
+msgid "Tórshavn"
 
26996
+msgstr ""
 
26997
+
 
26998
+#. A city in Minas Gerais in Brazil
 
26999
+#: ../data/Locations.xml.in.h:9135
 
27000
+msgid "Uberaba"
 
27001
+msgstr ""
 
27002
+
 
27003
+#. A city in Minas Gerais in Brazil
 
27004
+#: ../data/Locations.xml.in.h:9137
 
27005
+msgid "Uberlândia"
 
27006
+msgstr ""
 
27007
+
 
27008
+#. A city in Thailand
 
27009
+#: ../data/Locations.xml.in.h:9139
 
27010
+msgid "Ubon Ratchathani"
 
27011
+msgstr ""
 
27012
+
 
27013
+#. A city in Russia
 
27014
+#: ../data/Locations.xml.in.h:9141
 
27015
+msgid "Udachnyy"
 
27016
+msgstr ""
 
27017
+
 
27018
+#. A city in Thailand
 
27019
+#: ../data/Locations.xml.in.h:9143
 
27020
+msgid "Udon Thani"
 
27021
+msgstr ""
 
27022
+
 
27023
+#. A city in Russia
 
27024
+#: ../data/Locations.xml.in.h:9145
 
27025
+msgid "Ufa"
 
27026
+msgstr ""
 
27027
+
 
27028
+#. UG - Uganda
 
27029
+#: ../data/Locations.xml.in.h:9147
 
27030
+msgid "Uganda"
 
27031
+msgstr ""
 
27032
+
 
27033
+#. A city in California in the United States
 
27034
+#: ../data/Locations.xml.in.h:9149
 
27035
+msgid "Ukiah"
 
27036
+msgstr ""
 
27037
+
 
27038
+#. UA - Ukraine
 
27039
+#: ../data/Locations.xml.in.h:9151
 
27040
+msgid "Ukraine"
 
27041
+msgstr ""
 
27042
+
 
27043
+#. A city in Russia
 
27044
+#: ../data/Locations.xml.in.h:9153
 
27045
+msgid "Ul'yanovsk"
 
27046
+msgstr ""
 
27047
+
 
27048
+#. The capital of Mongolia.
 
27049
+#. The name is also written "Улаанбаатар".
 
27050
+#.
 
27051
+#: ../data/Locations.xml.in.h:9157
 
27052
+msgid "Ulaanbaatar"
 
27053
+msgstr ""
 
27054
+
 
27055
+#. A city in Russia
 
27056
+#: ../data/Locations.xml.in.h:9159
 
27057
+msgid "Ulan-Ude"
 
27058
+msgstr ""
 
27059
+
 
27060
+#. A city in Schleswig-Holstein in Germany
 
27061
+#: ../data/Locations.xml.in.h:9161
 
27062
+msgid "Ulstrupfeld"
 
27063
+msgstr ""
 
27064
+
 
27065
+#. A city in Sweden
 
27066
+#: ../data/Locations.xml.in.h:9163
 
27067
+msgid "Umeå"
 
27068
+msgstr ""
 
27069
+
 
27070
+#. A city in Alaska in the United States
 
27071
+#: ../data/Locations.xml.in.h:9165
 
27072
+msgid "Unalakleet"
 
27073
+msgstr ""
 
27074
+
 
27075
+#. A city in Alaska in the United States
 
27076
+#: ../data/Locations.xml.in.h:9167
 
27077
+msgid "Unalaska"
 
27078
+msgstr ""
 
27079
+
 
27080
+#. AE - United Arab Emirates
 
27081
+#: ../data/Locations.xml.in.h:9169
 
27082
+msgid "United Arab Emirates"
 
27083
+msgstr ""
 
27084
+
 
27085
+#. GB - United Kingdom
 
27086
+#: ../data/Locations.xml.in.h:9171
 
27087
+msgid "United Kingdom"
 
27088
+msgstr ""
 
27089
+
 
27090
+#. US - United States, aka United States of America
 
27091
+#: ../data/Locations.xml.in.h:9173
 
27092
+msgid "United States"
 
27093
+msgstr ""
 
27094
+
 
27095
+#. UM - United States Minor Outlying Islands, a group of
 
27096
+#. mostly-uninhabited United States territories in the South
 
27097
+#. Pacific.
 
27098
+#.
 
27099
+#: ../data/Locations.xml.in.h:9178
 
27100
+msgid "United States Minor Outlying Islands"
 
27101
+msgstr ""
 
27102
+
 
27103
+#. VI - United States Virgin Islands, a territory of the United
 
27104
+#. States in the Caribbean
 
27105
+#.
 
27106
+#: ../data/Locations.xml.in.h:9182
 
27107
+msgid "United States Virgin Islands"
 
27108
+msgstr ""
 
27109
+
 
27110
+#. A city in Missouri in the United States
 
27111
+#: ../data/Locations.xml.in.h:9184
 
27112
+msgid "Unity Village"
 
27113
+msgstr ""
 
27114
+
 
27115
+#. A city in Texas in the United States
 
27116
+#: ../data/Locations.xml.in.h:9186
 
27117
+msgid "Universal City"
 
27118
+msgstr ""
 
27119
+
 
27120
+#. A city in South Africa
 
27121
+#: ../data/Locations.xml.in.h:9188
 
27122
+msgid "Upington"
 
27123
+msgstr ""
 
27124
+
 
27125
+#. A city in Ontario in Canada
 
27126
+#: ../data/Locations.xml.in.h:9190
 
27127
+msgid "Upsala"
 
27128
+msgstr ""
 
27129
+
 
27130
+#. A city in Saskatchewan in Canada
 
27131
+#: ../data/Locations.xml.in.h:9192
 
27132
+msgid "Uranium City"
 
27133
+msgstr ""
 
27134
+
 
27135
+#. A city in Uzbekistan
 
27136
+#: ../data/Locations.xml.in.h:9194
 
27137
+msgid "Urganch"
 
27138
+msgstr ""
 
27139
+
 
27140
+#. A city in Michoacán in Mexico
 
27141
+#: ../data/Locations.xml.in.h:9196
 
27142
+msgid "Uruapan"
 
27143
+msgstr ""
 
27144
+
 
27145
+#. A city in Rio Grande do Sul in Brazil
 
27146
+#: ../data/Locations.xml.in.h:9198
 
27147
+msgid "Uruguaiana"
 
27148
+msgstr ""
 
27149
+
 
27150
+#. UY - Uruguay
 
27151
+#: ../data/Locations.xml.in.h:9200
 
27152
+msgid "Uruguay"
 
27153
+msgstr ""
 
27154
+
 
27155
+#. A city in Xinjiang in China.
 
27156
+#. The name is also written "乌鲁木齐".
 
27157
+#.
 
27158
+#: ../data/Locations.xml.in.h:9204
 
27159
+msgid "Urumqi"
 
27160
+msgstr ""
 
27161
+
 
27162
+#. A city in Argentina
 
27163
+#: ../data/Locations.xml.in.h:9206
 
27164
+msgid "Ushuaia"
 
27165
+msgstr ""
 
27166
+
 
27167
+#. A city in Japan
 
27168
+#: ../data/Locations.xml.in.h:9208
 
27169
+msgid "Ushuku"
 
27170
+msgstr ""
 
27171
+
 
27172
+#. A state/province/territory in United States
 
27173
+#: ../data/Locations.xml.in.h:9210
 
27174
+msgid "Utah"
 
27175
+msgstr ""
 
27176
+
 
27177
+#. A city in Finland
 
27178
+#: ../data/Locations.xml.in.h:9212
 
27179
+msgid "Utti"
 
27180
+msgstr ""
 
27181
+
 
27182
+#. A city in Texas in the United States
 
27183
+#: ../data/Locations.xml.in.h:9214
 
27184
+msgid "Uvalde"
 
27185
+msgstr ""
 
27186
+
 
27187
+#. UZ - Uzbekistan
 
27188
+#: ../data/Locations.xml.in.h:9216
 
27189
+msgid "Uzbekistan"
 
27190
+msgstr ""
 
27191
+
 
27192
+#. A city in Ukraine
 
27193
+#: ../data/Locations.xml.in.h:9218
 
27194
+msgid "Uzhhorod"
 
27195
+msgstr ""
 
27196
+
 
27197
+#. A city in Finland.
 
27198
+#. The local name in Swedish is "Vasa".
 
27199
+#.
 
27200
+#: ../data/Locations.xml.in.h:9222
 
27201
+msgid "Vaasa"
 
27202
+msgstr ""
 
27203
+
 
27204
+#. A city in California in the United States
 
27205
+#: ../data/Locations.xml.in.h:9224
 
27206
+msgid "Vacaville"
 
27207
+msgstr ""
 
27208
+
 
27209
+#. A city in Norway
 
27210
+#: ../data/Locations.xml.in.h:9226
 
27211
+msgid "Vadsø"
 
27212
+msgstr ""
 
27213
+
 
27214
+#. The capital of Liechtenstein
 
27215
+#: ../data/Locations.xml.in.h:9228
 
27216
+msgid "Vaduz"
 
27217
+msgstr ""
 
27218
+
 
27219
+#. A city in Saskatchewan in Canada
 
27220
+#: ../data/Locations.xml.in.h:9230
 
27221
+msgid "Val Marie"
 
27222
+msgstr ""
 
27223
+
 
27224
+#. A city in Quebec in Canada
 
27225
+#: ../data/Locations.xml.in.h:9232
 
27226
+msgid "Val-d'Or"
 
27227
+msgstr ""
 
27228
+
 
27229
+#. A city in Quebec in Canada
 
27230
+#: ../data/Locations.xml.in.h:9234
 
27231
+msgid "Valcartier Station"
 
27232
+msgstr ""
 
27233
+
 
27234
+#. A city in Alaska in the United States
 
27235
+#: ../data/Locations.xml.in.h:9236
 
27236
+msgid "Valdez"
 
27237
+msgstr ""
 
27238
+
 
27239
+#. A city in Georgia in the United States
 
27240
+#: ../data/Locations.xml.in.h:9238
 
27241
+msgid "Valdosta"
 
27242
+msgstr ""
 
27243
+
 
27244
+#. A city in Nebraska in the United States
 
27245
+#: ../data/Locations.xml.in.h:9240
 
27246
+msgid "Valentine"
 
27247
+msgstr ""
 
27248
+
 
27249
+#. A city in Venezuela
 
27250
+#: ../data/Locations.xml.in.h:9242
 
27251
+msgid "Valera"
 
27252
+msgstr ""
 
27253
+
 
27254
+#. A city in the Netherlands
 
27255
+#: ../data/Locations.xml.in.h:9244
 
27256
+msgid "Valkenburg"
 
27257
+msgstr ""
 
27258
+
 
27259
+#. A city in California in the United States
 
27260
+#: ../data/Locations.xml.in.h:9246
 
27261
+msgid "Vallejo"
 
27262
+msgstr ""
 
27263
+
 
27264
+#. The capital of Malta
 
27265
+#: ../data/Locations.xml.in.h:9248
 
27266
+msgid "Valletta"
 
27267
+msgstr ""
 
27268
+
 
27269
+#. A city in Wales in the United Kingdom
 
27270
+#: ../data/Locations.xml.in.h:9250
 
27271
+msgid "Valley"
 
27272
+msgstr ""
 
27273
+
 
27274
+#. A city in Denmark
 
27275
+#: ../data/Locations.xml.in.h:9252
 
27276
+msgid "Vamdrup"
 
27277
+msgstr ""
 
27278
+
 
27279
+#. A city in Turkey
 
27280
+#: ../data/Locations.xml.in.h:9254
 
27281
+msgid "Van"
 
27282
+msgstr ""
 
27283
+
 
27284
+#. A city in California in the United States
 
27285
+#: ../data/Locations.xml.in.h:9256
 
27286
+msgid "Van Nuys"
 
27287
+msgstr ""
 
27288
+
 
27289
+#. A city in Finland.
 
27290
+#. The local name in Swedish is "Vanda".
 
27291
+#.
 
27292
+#: ../data/Locations.xml.in.h:9260
 
27293
+msgid "Vantaa"
 
27294
+msgstr ""
 
27295
+
 
27296
+#. VU - Vanuatu
 
27297
+#: ../data/Locations.xml.in.h:9262
 
27298
+msgid "Vanuatu"
 
27299
+msgstr ""
 
27300
+
 
27301
+#. A city in Quebec in Canada
 
27302
+#: ../data/Locations.xml.in.h:9264
 
27303
+msgid "Varennes"
 
27304
+msgstr ""
 
27305
+
 
27306
+#. A city in Finland
 
27307
+#: ../data/Locations.xml.in.h:9266
 
27308
+msgid "Varkaus"
 
27309
+msgstr ""
 
27310
+
 
27311
+#. A city in Bulgaria
 
27312
+#: ../data/Locations.xml.in.h:9268
 
27313
+msgid "Varna"
 
27314
+msgstr ""
 
27315
+
 
27316
+#. VA - Holy See (Vatican City State)
 
27317
+#: ../data/Locations.xml.in.h:9270
 
27318
+msgid "Vatican City"
 
27319
+msgstr ""
 
27320
+
 
27321
+#. A city in France
 
27322
+#: ../data/Locations.xml.in.h:9272
 
27323
+msgid "Veauche"
 
27324
+msgstr ""
 
27325
+
 
27326
+#. A city in Alberta in Canada
 
27327
+#: ../data/Locations.xml.in.h:9274
 
27328
+msgid "Vegreville"
 
27329
+msgstr ""
 
27330
+
 
27331
+#. A city in Russia
 
27332
+#: ../data/Locations.xml.in.h:9276
 
27333
+msgid "Velikiye Luki"
 
27334
+msgstr ""
 
27335
+
 
27336
+#. VE - Venezuela
 
27337
+#: ../data/Locations.xml.in.h:9278
 
27338
+msgid "Venezuela"
 
27339
+msgstr ""
 
27340
+
 
27341
+#. A city in Italy.
 
27342
+#. "Venice" is the traditional English name.
 
27343
+#. The local name in Italian is "Venezia".
 
27344
+#.
 
27345
+#: ../data/Locations.xml.in.h:9283
 
27346
+msgid "Venice"
 
27347
+msgstr ""
 
27348
+
 
27349
+#. A city in California in the United States
 
27350
+#: ../data/Locations.xml.in.h:9285
 
27351
+msgid "Ventura"
 
27352
+msgstr ""
 
27353
+
 
27354
+#. A city in South Africa
 
27355
+#: ../data/Locations.xml.in.h:9287
 
27356
+msgid "Vereeniging"
 
27357
+msgstr ""
 
27358
+
 
27359
+#. A state/province/territory in United States
 
27360
+#: ../data/Locations.xml.in.h:9289
 
27361
+msgid "Vermont"
 
27362
+msgstr ""
 
27363
+
 
27364
+#. A city in Utah in the United States
 
27365
+#: ../data/Locations.xml.in.h:9291
 
27366
+msgid "Vernal"
 
27367
+msgstr ""
 
27368
+
 
27369
+#. A city in Florida in the United States
 
27370
+#: ../data/Locations.xml.in.h:9293
 
27371
+msgid "Vero Beach"
 
27372
+msgstr ""
 
27373
+
 
27374
+#. A city in Italy
 
27375
+#: ../data/Locations.xml.in.h:9295
 
27376
+msgid "Verona"
 
27377
+msgstr ""
 
27378
+
 
27379
+#. A city in Mississippi in the United States
 
27380
+#: ../data/Locations.xml.in.h:9297
 
27381
+msgid "Vicksburg"
 
27382
+msgstr ""
 
27383
+
 
27384
+#. A city in Manitoba in Canada
 
27385
+#: ../data/Locations.xml.in.h:9299
 
27386
+msgid "Victoria Beach"
 
27387
+msgstr ""
 
27388
+
 
27389
+#. A city in California in the United States
 
27390
+#: ../data/Locations.xml.in.h:9301
 
27391
+msgid "Victorville"
 
27392
+msgstr ""
 
27393
+
 
27394
+#. A city in Georgia in the United States
 
27395
+#: ../data/Locations.xml.in.h:9303
 
27396
+msgid "Vidalia"
 
27397
+msgstr ""
 
27398
+
 
27399
+#. The capital of Austria.
 
27400
+#. "Vienna" is the traditional English name.
 
27401
+#. The local name in German is "Wien".
 
27402
+#.
 
27403
+#: ../data/Locations.xml.in.h:9308
 
27404
+msgid "Vienna"
 
27405
+msgstr ""
 
27406
+
 
27407
+#. The capital of Laos.
 
27408
+#. "Vientiane" is the traditional English name.
 
27409
+#. The local name in Lao is "Viangchan".
 
27410
+#.
 
27411
+#: ../data/Locations.xml.in.h:9313
 
27412
+msgid "Vientiane"
 
27413
+msgstr ""
 
27414
+
 
27415
+#. VN - Viet Nam (The official ISO 3166 short English name
 
27416
+#. includes a space, though it is also frequently written
 
27417
+#. without one.)
 
27418
+#.
 
27419
+#: ../data/Locations.xml.in.h:9318
 
27420
+msgid "Viet Nam"
 
27421
+msgstr ""
 
27422
+
 
27423
+#. A city in Saint Lucia
 
27424
+#: ../data/Locations.xml.in.h:9320
 
27425
+msgid "Vigie"
 
27426
+msgstr ""
 
27427
+
 
27428
+#. A city in Spain
 
27429
+#: ../data/Locations.xml.in.h:9322
 
27430
+msgid "Vigo"
 
27431
+msgstr ""
 
27432
+
 
27433
+#. A city in Pernambuco in Brazil
 
27434
+#: ../data/Locations.xml.in.h:9324
 
27435
+msgid "Vila dos Remédios"
 
27436
+msgstr ""
 
27437
+
 
27438
+#. A city in Florida in the United States
 
27439
+#: ../data/Locations.xml.in.h:9326
 
27440
+msgid "Vilano Beach"
 
27441
+msgstr ""
 
27442
+
 
27443
+#. A city in Rondônia in Brazil
 
27444
+#: ../data/Locations.xml.in.h:9328
 
27445
+msgid "Vilhena"
 
27446
+msgstr ""
 
27447
+
 
27448
+#. A city in Tabasco in Mexico
 
27449
+#: ../data/Locations.xml.in.h:9330
 
27450
+msgid "Villahermosa"
 
27451
+msgstr ""
 
27452
+
 
27453
+#. A city in Bolivia
 
27454
+#: ../data/Locations.xml.in.h:9332
 
27455
+msgid "Villamontes"
 
27456
+msgstr ""
 
27457
+
 
27458
+#. A city in Spain
 
27459
+#: ../data/Locations.xml.in.h:9334
 
27460
+msgid "Villanubla"
 
27461
+msgstr ""
 
27462
+
 
27463
+#. A city in Colombia
 
27464
+#: ../data/Locations.xml.in.h:9336
 
27465
+msgid "Villavicencio"
 
27466
+msgstr ""
 
27467
+
 
27468
+#. The capital of Lithuania
 
27469
+#: ../data/Locations.xml.in.h:9338
 
27470
+msgid "Vilnius"
 
27471
+msgstr ""
 
27472
+
 
27473
+#. A city in Massachusetts in the United States
 
27474
+#: ../data/Locations.xml.in.h:9340
 
27475
+msgid "Vineyard Haven"
 
27476
+msgstr ""
 
27477
+
 
27478
+#. A city in Iowa in the United States
 
27479
+#: ../data/Locations.xml.in.h:9342
 
27480
+msgid "Vinton"
 
27481
+msgstr ""
 
27482
+
 
27483
+#. A state/province/territory in United States
 
27484
+#: ../data/Locations.xml.in.h:9344
 
27485
+msgid "Virginia"
 
27486
+msgstr ""
 
27487
+
 
27488
+#. A city in Virginia in the United States
 
27489
+#: ../data/Locations.xml.in.h:9346
 
27490
+msgid "Virginia Beach"
 
27491
+msgstr ""
 
27492
+
 
27493
+#. A city in Bolivia
 
27494
+#: ../data/Locations.xml.in.h:9348
 
27495
+msgid "Viro Viro"
 
27496
+msgstr ""
 
27497
+
 
27498
+#. A city in California in the United States
 
27499
+#: ../data/Locations.xml.in.h:9350
 
27500
+msgid "Visalia"
 
27501
+msgstr ""
 
27502
+
 
27503
+#. A city in Sweden
 
27504
+#: ../data/Locations.xml.in.h:9352
 
27505
+msgid "Visby"
 
27506
+msgstr ""
 
27507
+
 
27508
+#. A city in Italy
 
27509
+#: ../data/Locations.xml.in.h:9354
 
27510
+msgid "Viterbo"
 
27511
+msgstr ""
 
27512
+
 
27513
+#. A city in Spain
 
27514
+#: ../data/Locations.xml.in.h:9356
 
27515
+msgid "Vitoria-Gasteiz"
 
27516
+msgstr ""
 
27517
+
 
27518
+#. A city in Belarus
 
27519
+#: ../data/Locations.xml.in.h:9358
 
27520
+msgid "Vitsyebsk"
 
27521
+msgstr ""
 
27522
+
 
27523
+#. A city in Espírito Santo in Brazil
 
27524
+#: ../data/Locations.xml.in.h:9360
 
27525
+msgid "Vitória"
 
27526
+msgstr ""
 
27527
+
 
27528
+#. A city in Bahia in Brazil
 
27529
+#: ../data/Locations.xml.in.h:9362
 
27530
+msgid "Vitória da Conquista"
 
27531
+msgstr ""
 
27532
+
 
27533
+#. A city in Russia
 
27534
+#: ../data/Locations.xml.in.h:9364
 
27535
+msgid "Vladivostok"
 
27536
+msgstr ""
 
27537
+
 
27538
+#. A Russian time zone, used in the city of Vladivostok and
 
27539
+#. surrounding areas of eastern Russia. The Russian name is
 
27540
+#. "Владивостокское время". This string is only used in
 
27541
+#. places where "Russia" is already clear from context.
 
27542
+#.
 
27543
+#: ../data/Locations.xml.in.h:9370
 
27544
+msgid "Vladivostok Time"
 
27545
+msgstr ""
 
27546
+
 
27547
+#. A city in Russia
 
27548
+#: ../data/Locations.xml.in.h:9372
 
27549
+msgid "Volgograd"
 
27550
+msgstr ""
 
27551
+
 
27552
+#. A city in the Netherlands
 
27553
+#: ../data/Locations.xml.in.h:9374
 
27554
+msgid "Volkel"
 
27555
+msgstr ""
 
27556
+
 
27557
+#. A city in Russia
 
27558
+#: ../data/Locations.xml.in.h:9376
 
27559
+msgid "Voronezh"
 
27560
+msgstr ""
 
27561
+
 
27562
+#. A city in Schleswig-Holstein in Germany
 
27563
+#: ../data/Locations.xml.in.h:9378
 
27564
+msgid "Vorrade"
 
27565
+msgstr ""
 
27566
+
 
27567
+#. A Russian research station in Antarctica. The string is
 
27568
+#. only used in places where "Antarctica" is already clear
 
27569
+#. from context.
 
27570
+#.
 
27571
+#: ../data/Locations.xml.in.h:9383
 
27572
+msgid "Vostok Station"
 
27573
+msgstr ""
 
27574
+
 
27575
+#. A city in Serbia
 
27576
+#: ../data/Locations.xml.in.h:9385
 
27577
+msgid "Vršac"
 
27578
+msgstr ""
 
27579
+
 
27580
+#. A city in Sweden
 
27581
+#: ../data/Locations.xml.in.h:9387
 
27582
+msgid "Västerås"
 
27583
+msgstr ""
 
27584
+
 
27585
+#. A city in Sweden
 
27586
+#: ../data/Locations.xml.in.h:9389
 
27587
+msgid "Växjö"
 
27588
+msgstr ""
 
27589
+
 
27590
+#. A city in France
 
27591
+#: ../data/Locations.xml.in.h:9391
 
27592
+msgid "Vélizy"
 
27593
+msgstr ""
 
27594
+
 
27595
+#. A city in Newfoundland and Labrador in Canada
 
27596
+#: ../data/Locations.xml.in.h:9393
 
27597
+msgid "Wabush"
 
27598
+msgstr ""
 
27599
+
 
27600
+#. A city in Texas in the United States
 
27601
+#: ../data/Locations.xml.in.h:9395
 
27602
+msgid "Waco"
 
27603
+msgstr ""
 
27604
+
 
27605
+#. A city in North East England in the United Kingdom
 
27606
+#: ../data/Locations.xml.in.h:9397
 
27607
+msgid "Waddington"
 
27608
+msgstr ""
 
27609
+
 
27610
+#. A city in Minnesota in the United States
 
27611
+#: ../data/Locations.xml.in.h:9399
 
27612
+msgid "Wadena"
 
27613
+msgstr ""
 
27614
+
 
27615
+#. A city in North Carolina in the United States
 
27616
+#: ../data/Locations.xml.in.h:9401
 
27617
+msgid "Wadesboro"
 
27618
+msgstr ""
 
27619
+
 
27620
+#. A city in Hawaii in the United States
 
27621
+#: ../data/Locations.xml.in.h:9403
 
27622
+msgid "Wahiawā"
 
27623
+msgstr ""
 
27624
+
 
27625
+#. A city in North Dakota in the United States
 
27626
+#: ../data/Locations.xml.in.h:9405
 
27627
+msgid "Wahpeton"
 
27628
+msgstr ""
 
27629
+
 
27630
+#. A city in Hawaii in the United States
 
27631
+#: ../data/Locations.xml.in.h:9407
 
27632
+msgid "Waiki‘i"
 
27633
+msgstr ""
 
27634
+
 
27635
+#. A city in East and South East England in the United
 
27636
+#. Kingdom
 
27637
+#.
 
27638
+#: ../data/Locations.xml.in.h:9411
 
27639
+msgid "Wainfleet"
 
27640
+msgstr ""
 
27641
+
 
27642
+#. A city in Alaska in the United States
 
27643
+#: ../data/Locations.xml.in.h:9413
 
27644
+msgid "Wainwright"
 
27645
+msgstr ""
 
27646
+
 
27647
+#. The time zone for Wake Island in the United States Minor
 
27648
+#. Outlying Islands. The string is only used in places
 
27649
+#. where "US Minor Outlying Islands" is already clear from
 
27650
+#. context.
 
27651
+#.
 
27652
+#: ../data/Locations.xml.in.h:9419
 
27653
+msgid "Wake Island"
 
27654
+msgstr ""
 
27655
+
 
27656
+#. A city in the United States Minor Outlying Islands
 
27657
+#: ../data/Locations.xml.in.h:9421
 
27658
+msgid "Wake Island, Wake Island Army Airfield Airport"
 
27659
+msgstr ""
 
27660
+
 
27661
+#. A city in Virginia in the United States
 
27662
+#: ../data/Locations.xml.in.h:9423
 
27663
+msgid "Wakefield"
 
27664
+msgstr ""
 
27665
+
 
27666
+#. A city in Japan
 
27667
+#: ../data/Locations.xml.in.h:9425
 
27668
+msgid "Wakkanai"
 
27669
+msgstr ""
 
27670
+
 
27671
+#. A state/province/territory in United Kingdom
 
27672
+#: ../data/Locations.xml.in.h:9427
 
27673
+msgid "Wales"
 
27674
+msgstr ""
 
27675
+
 
27676
+#. A city in Washington in the United States
 
27677
+#: ../data/Locations.xml.in.h:9429
 
27678
+msgid "Walla Walla"
 
27679
+msgstr ""
 
27680
+
 
27681
+#. WF - Wallis and Futuna, a French territory in the South
 
27682
+#. Pacific
 
27683
+#.
 
27684
+#: ../data/Locations.xml.in.h:9433
 
27685
+msgid "Wallis and Futuna"
 
27686
+msgstr ""
 
27687
+
 
27688
+#. A city in Arkansas in the United States
 
27689
+#: ../data/Locations.xml.in.h:9435
 
27690
+msgid "Walnut Ridge"
 
27691
+msgstr ""
 
27692
+
 
27693
+#. A city in Georgia in the United States
 
27694
+#: ../data/Locations.xml.in.h:9437
 
27695
+msgid "Warner Robins"
 
27696
+msgstr ""
 
27697
+
 
27698
+#. A city in Michigan in the United States
 
27699
+#: ../data/Locations.xml.in.h:9439
 
27700
+msgid "Warren"
 
27701
+msgstr ""
 
27702
+
 
27703
+#. A city in Minnesota in the United States
 
27704
+#: ../data/Locations.xml.in.h:9441
 
27705
+msgid "Warroad"
 
27706
+msgstr ""
 
27707
+
 
27708
+#. A city in Minnesota in the United States
 
27709
+#: ../data/Locations.xml.in.h:9443
 
27710
+msgid "Waseca"
 
27711
+msgstr ""
 
27712
+
 
27713
+#. A city in Alaska in the United States
 
27714
+#: ../data/Locations.xml.in.h:9445
 
27715
+msgid "Wasilla"
 
27716
+msgstr ""
 
27717
+
 
27718
+#. A city in Minnesota in the United States
 
27719
+#: ../data/Locations.xml.in.h:9447
 
27720
+msgid "Waskish"
 
27721
+msgstr ""
 
27722
+
 
27723
+#. A city in Connecticut in the United States
 
27724
+#: ../data/Locations.xml.in.h:9449
 
27725
+msgid "Waterbury"
 
27726
+msgstr ""
 
27727
+
 
27728
+#. A city in Maine in the United States
 
27729
+#: ../data/Locations.xml.in.h:9451
 
27730
+msgid "Waterville"
 
27731
+msgstr ""
 
27732
+
 
27733
+#. A city in Saskatchewan in Canada
 
27734
+#: ../data/Locations.xml.in.h:9453
 
27735
+msgid "Watrous"
 
27736
+msgstr ""
 
27737
+
 
27738
+#. A city in Yukon Territory in Canada
 
27739
+#: ../data/Locations.xml.in.h:9455
 
27740
+msgid "Watson Lake"
 
27741
+msgstr ""
 
27742
+
 
27743
+#. A city in California in the United States
 
27744
+#: ../data/Locations.xml.in.h:9457
 
27745
+msgid "Watsonville"
 
27746
+msgstr ""
 
27747
+
 
27748
+#. A city in East and South East England in the United
 
27749
+#. Kingdom
 
27750
+#.
 
27751
+#: ../data/Locations.xml.in.h:9461
 
27752
+msgid "Wattisham"
 
27753
+msgstr ""
 
27754
+
 
27755
+#. A city in Illinois in the United States
 
27756
+#: ../data/Locations.xml.in.h:9463
 
27757
+msgid "Waukegan"
 
27758
+msgstr ""
 
27759
+
 
27760
+#. A city in Wisconsin in the United States
 
27761
+#: ../data/Locations.xml.in.h:9465
 
27762
+msgid "Waukesha"
 
27763
+msgstr ""
 
27764
+
 
27765
+#. A city in Wisconsin in the United States
 
27766
+#: ../data/Locations.xml.in.h:9467
 
27767
+msgid "Waupaca"
 
27768
+msgstr ""
 
27769
+
 
27770
+#. A city in Wisconsin in the United States
 
27771
+#: ../data/Locations.xml.in.h:9469
 
27772
+msgid "Wausau"
 
27773
+msgstr ""
 
27774
+
 
27775
+#. A city in Wisconsin in the United States
 
27776
+#: ../data/Locations.xml.in.h:9471
 
27777
+msgid "Wautoma"
 
27778
+msgstr ""
 
27779
+
 
27780
+#. A city in Ontario in Canada
 
27781
+#: ../data/Locations.xml.in.h:9473
 
27782
+msgid "Wawa"
 
27783
+msgstr ""
 
27784
+
 
27785
+#. A city in Georgia in the United States
 
27786
+#: ../data/Locations.xml.in.h:9475
 
27787
+msgid "Waycross"
 
27788
+msgstr ""
 
27789
+
 
27790
+#. A city in Nebraska in the United States
 
27791
+#: ../data/Locations.xml.in.h:9477
 
27792
+msgid "Wayne"
 
27793
+msgstr ""
 
27794
+
 
27795
+#. A city in Missouri in the United States
 
27796
+#: ../data/Locations.xml.in.h:9479
 
27797
+msgid "Waynesville"
 
27798
+msgstr ""
 
27799
+
 
27800
+#. A city in Oklahoma in the United States
 
27801
+#: ../data/Locations.xml.in.h:9481
 
27802
+msgid "Weatherford"
 
27803
+msgstr ""
 
27804
+
 
27805
+#. A city in Lower Saxony in Germany
 
27806
+#: ../data/Locations.xml.in.h:9483
 
27807
+msgid "Webershausen"
 
27808
+msgstr ""
 
27809
+
 
27810
+#. A city in Iowa in the United States
 
27811
+#: ../data/Locations.xml.in.h:9485
 
27812
+msgid "Webster City"
 
27813
+msgstr ""
 
27814
+
 
27815
+#. The capital of New Zealand
 
27816
+#: ../data/Locations.xml.in.h:9487
 
27817
+msgid "Wellington"
 
27818
+msgstr ""
 
27819
+
 
27820
+#. A city in New York in the United States
 
27821
+#: ../data/Locations.xml.in.h:9489
 
27822
+msgid "Wellsville"
 
27823
+msgstr ""
 
27824
+
 
27825
+#. A city in Washington in the United States
 
27826
+#: ../data/Locations.xml.in.h:9491
 
27827
+msgid "Wenatchee"
 
27828
+msgstr ""
 
27829
+
 
27830
+#. A city in Utah in the United States
 
27831
+#: ../data/Locations.xml.in.h:9493
 
27832
+msgid "Wendover"
 
27833
+msgstr ""
 
27834
+
 
27835
+#. A city in Texas in the United States
 
27836
+#: ../data/Locations.xml.in.h:9495
 
27837
+msgid "Weslaco"
 
27838
+msgstr ""
 
27839
+
 
27840
+#. This represents the time zone in the western part of the
 
27841
+#. Brazilian state of Amazonas. See the comment on
 
27842
+#. "Brasília Time" for more details. This string is only
 
27843
+#. used in places where "Brazil" is already clear from
 
27844
+#. context.
 
27845
+#.
 
27846
+#: ../data/Locations.xml.in.h:9502
 
27847
+msgid "West Amazonas"
 
27848
+msgstr ""
 
27849
+
 
27850
+#. A city in Wisconsin in the United States
 
27851
+#: ../data/Locations.xml.in.h:9504
 
27852
+msgid "West Bend"
 
27853
+msgstr ""
 
27854
+
 
27855
+#. A city in Illinois in the United States
 
27856
+#: ../data/Locations.xml.in.h:9506
 
27857
+msgid "West Chicago"
 
27858
+msgstr ""
 
27859
+
 
27860
+#. A city in California in the United States
 
27861
+#: ../data/Locations.xml.in.h:9508
 
27862
+msgid "West Covina"
 
27863
+msgstr ""
 
27864
+
 
27865
+#. A city in Arkansas in the United States
 
27866
+#: ../data/Locations.xml.in.h:9510
 
27867
+msgid "West Memphis"
 
27868
+msgstr ""
 
27869
+
 
27870
+#. A city in Florida in the United States
 
27871
+#: ../data/Locations.xml.in.h:9512
 
27872
+msgid "West Palm Beach"
 
27873
+msgstr ""
 
27874
+
 
27875
+#. This represents the time zone in the Brazilian state of
 
27876
+#. Rondônia and the western part of Pará. See the comment
 
27877
+#. on "Brasília Time" for more details. This string is only
 
27878
+#. used in places where "Brazil" is already clear from
 
27879
+#. context.
 
27880
+#.
 
27881
+#: ../data/Locations.xml.in.h:9519
 
27882
+msgid "West Pará, Rondônia"
 
27883
+msgstr ""
 
27884
+
 
27885
+#. A city in Missouri in the United States
 
27886
+#: ../data/Locations.xml.in.h:9521
 
27887
+msgid "West Plains"
 
27888
+msgstr ""
 
27889
+
 
27890
+#. A city in Virginia in the United States
 
27891
+#: ../data/Locations.xml.in.h:9523
 
27892
+msgid "West Point"
 
27893
+msgstr ""
 
27894
+
 
27895
+#. A city in Wyoming in the United States
 
27896
+#: ../data/Locations.xml.in.h:9525
 
27897
+msgid "West Thumb"
 
27898
+msgstr ""
 
27899
+
 
27900
+#. A city in Utah in the United States
 
27901
+#: ../data/Locations.xml.in.h:9527
 
27902
+msgid "West Valley City"
 
27903
+msgstr ""
 
27904
+
 
27905
+#. A state/province/territory in United States
 
27906
+#: ../data/Locations.xml.in.h:9529
 
27907
+msgid "West Virginia"
 
27908
+msgstr ""
 
27909
+
 
27910
+#. A state in Belgium. local name (nl): West-Vlaanderen.
 
27911
+#. local name (fr): Flandre occidentale. local name (de):
 
27912
+#. Westflandern.
 
27913
+#.
 
27914
+#: ../data/Locations.xml.in.h:9534
 
27915
+msgid "West-Flanders"
 
27916
+msgstr ""
 
27917
+
 
27918
+#. A city in Schleswig-Holstein in Germany
 
27919
+#: ../data/Locations.xml.in.h:9536
 
27920
+msgid "Westerland"
 
27921
+msgstr ""
 
27922
+
 
27923
+#. A city in Rhode Island in the United States
 
27924
+#: ../data/Locations.xml.in.h:9538
 
27925
+msgid "Westerly"
 
27926
+msgstr ""
 
27927
+
 
27928
+#. A state/province/territory in Australia
 
27929
+#: ../data/Locations.xml.in.h:9540
 
27930
+msgid "Western Australia"
 
27931
+msgstr ""
 
27932
+
 
27933
+#. The time zone used in the western half of the Democratic
 
27934
+#. Republic of the Congo. The string is only used in places
 
27935
+#. where "Democratic Republic of the Congo" is already
 
27936
+#. clear from context. FIXME: is there an official name for
 
27937
+#. this zone?
 
27938
+#.
 
27939
+#: ../data/Locations.xml.in.h:9547
 
27940
+msgid "Western Congo"
 
27941
+msgstr ""
 
27942
+
 
27943
+#. The primary timezone for Greenland, although sources
 
27944
+#. seem to point towards calling the area "Western
 
27945
+#. Greenland" rathern than just "Greenland".
 
27946
+#.
 
27947
+#: ../data/Locations.xml.in.h:9552
 
27948
+msgid "Western Greenland"
 
27949
+msgstr ""
 
27950
+
 
27951
+#. The timezone on the western islands of Indonesia. The
 
27952
+#. name in Indonesian is "Waktu Indonesia Bagian Barat".
 
27953
+#.
 
27954
+#: ../data/Locations.xml.in.h:9556
 
27955
+msgid "Western Indonesia Time"
 
27956
+msgstr ""
 
27957
+
 
27958
+#. The time zone used in the western half of Kazakhstan.
 
27959
+#. FIXME: is there an official name for this zone?
 
27960
+#.
 
27961
+#: ../data/Locations.xml.in.h:9560
 
27962
+msgid "Western Kazakhstan"
 
27963
+msgstr ""
 
27964
+
 
27965
+#. The time zone used in the western part of Mongolia.
 
27966
+#. FIXME: Is there an official name for this zone?
 
27967
+#.
 
27968
+#: ../data/Locations.xml.in.h:9564
 
27969
+msgid "Western Mongolia"
 
27970
+msgstr ""
 
27971
+
 
27972
+#. EH - Western Sahara, a disputed territory in western Africa
 
27973
+#: ../data/Locations.xml.in.h:9566
 
27974
+msgid "Western Sahara"
 
27975
+msgstr ""
 
27976
+
 
27977
+#. The time zone used in Western Australia. The string is
 
27978
+#. only used in places where "Australia" is already clear
 
27979
+#. from context.
 
27980
+#.
 
27981
+#: ../data/Locations.xml.in.h:9571
 
27982
+msgid "Western Time"
 
27983
+msgstr ""
 
27984
+
 
27985
+#. A city in Massachusetts in the United States
 
27986
+#: ../data/Locations.xml.in.h:9573
 
27987
+msgid "Westfield"
 
27988
+msgstr ""
 
27989
+
 
27990
+#. A city in New York in the United States
 
27991
+#: ../data/Locations.xml.in.h:9575
 
27992
+msgid "Westhampton Beach"
 
27993
+msgstr ""
 
27994
+
 
27995
+#. A city in Colorado in the United States
 
27996
+#: ../data/Locations.xml.in.h:9577
 
27997
+msgid "Westminster"
 
27998
+msgstr ""
 
27999
+
 
28000
+#. A city in Nova Scotia in Canada
 
28001
+#: ../data/Locations.xml.in.h:9579
 
28002
+msgid "Westport"
 
28003
+msgstr ""
 
28004
+
 
28005
+#. A city in Saskatchewan in Canada
 
28006
+#: ../data/Locations.xml.in.h:9581
 
28007
+msgid "Weyburn"
 
28008
+msgstr ""
 
28009
+
 
28010
+#. A city in Northwest Territories in Canada
 
28011
+#: ../data/Locations.xml.in.h:9583
 
28012
+msgid "Wha Ti"
 
28013
+msgstr ""
 
28014
+
 
28015
+#. A city in Texas in the United States
 
28016
+#: ../data/Locations.xml.in.h:9585
 
28017
+msgid "Wharton"
 
28018
+msgstr ""
 
28019
+
 
28020
+#. A city in Minnesota in the United States
 
28021
+#: ../data/Locations.xml.in.h:9587
 
28022
+msgid "Wheaton"
 
28023
+msgstr ""
 
28024
+
 
28025
+#. A city in West Virginia in the United States
 
28026
+#: ../data/Locations.xml.in.h:9589
 
28027
+msgid "Wheeling"
 
28028
+msgstr ""
 
28029
+
 
28030
+#. A city in New York in the United States
 
28031
+#: ../data/Locations.xml.in.h:9591
 
28032
+msgid "White Plains"
 
28033
+msgstr ""
 
28034
+
 
28035
+#. A city in British Columbia in Canada
 
28036
+#: ../data/Locations.xml.in.h:9593
 
28037
+msgid "White Rock"
 
28038
+msgstr ""
 
28039
+
 
28040
+#. A city in Alberta in Canada
 
28041
+#: ../data/Locations.xml.in.h:9595
 
28042
+msgid "Whitecourt"
 
28043
+msgstr ""
 
28044
+
 
28045
+#. A city in New Hampshire in the United States
 
28046
+#: ../data/Locations.xml.in.h:9597
 
28047
+msgid "Whitefield"
 
28048
+msgstr ""
 
28049
+
 
28050
+#. A city in Ontario in Canada
 
28051
+#: ../data/Locations.xml.in.h:9599
 
28052
+msgid "Whitefish Falls"
 
28053
+msgstr ""
 
28054
+
 
28055
+#. A city in Yukon Territory in Canada
 
28056
+#: ../data/Locations.xml.in.h:9601
 
28057
+msgid "Whitehorse"
 
28058
+msgstr ""
 
28059
+
 
28060
+#. A city in Alaska in the United States
 
28061
+#: ../data/Locations.xml.in.h:9603
 
28062
+msgid "Whittier"
 
28063
+msgstr ""
 
28064
+
 
28065
+#. A city in Ontario in Canada
 
28066
+#: ../data/Locations.xml.in.h:9605
 
28067
+msgid "Wiarton"
 
28068
+msgstr ""
 
28069
+
 
28070
+#. A city in Kansas in the United States
 
28071
+#: ../data/Locations.xml.in.h:9607
 
28072
+msgid "Wichita"
 
28073
+msgstr ""
 
28074
+
 
28075
+#. A city in Texas in the United States
 
28076
+#: ../data/Locations.xml.in.h:9609
 
28077
+msgid "Wichita Falls"
 
28078
+msgstr ""
 
28079
+
 
28080
+#. A city in Scotland in the United Kingdom
 
28081
+#: ../data/Locations.xml.in.h:9611
 
28082
+msgid "Wick"
 
28083
+msgstr ""
 
28084
+
 
28085
+#. A city in Austria
 
28086
+#: ../data/Locations.xml.in.h:9613
 
28087
+msgid "Wiener Neustadt"
 
28088
+msgstr ""
 
28089
+
 
28090
+#. A city in Hesse in Germany
 
28091
+#: ../data/Locations.xml.in.h:9615
 
28092
+msgid "Wiesbaden"
 
28093
+msgstr ""
 
28094
+
 
28095
+#. A city in Pennsylvania in the United States
 
28096
+#: ../data/Locations.xml.in.h:9617
 
28097
+msgid "Wilkes-Barre"
 
28098
+msgstr ""
 
28099
+
 
28100
+#. A city in British Columbia in Canada
 
28101
+#: ../data/Locations.xml.in.h:9619
 
28102
+msgid "Williams Lake"
 
28103
+msgstr ""
 
28104
+
 
28105
+#. A city in Virginia in the United States
 
28106
+#: ../data/Locations.xml.in.h:9621
 
28107
+msgid "Williamsburg"
 
28108
+msgstr ""
 
28109
+
 
28110
+#. A city in Pennsylvania in the United States
 
28111
+#: ../data/Locations.xml.in.h:9623
 
28112
+msgid "Williamsport"
 
28113
+msgstr ""
 
28114
+
 
28115
+#. A city in North Dakota in the United States
 
28116
+#: ../data/Locations.xml.in.h:9625
 
28117
+msgid "Williston"
 
28118
+msgstr ""
 
28119
+
 
28120
+#. A city in Alaska in the United States
 
28121
+#: ../data/Locations.xml.in.h:9627
 
28122
+msgid "Willow"
 
28123
+msgstr ""
 
28124
+
 
28125
+#. A city in Pennsylvania in the United States
 
28126
+#: ../data/Locations.xml.in.h:9629
 
28127
+msgid "Willow Grove"
 
28128
+msgstr ""
 
28129
+
 
28130
+#. A city in Virginia in the United States
 
28131
+#: ../data/Locations.xml.in.h:9631
 
28132
+msgid "Winchester"
 
28133
+msgstr ""
 
28134
+
 
28135
+#. A city in Georgia in the United States
 
28136
+#: ../data/Locations.xml.in.h:9633
 
28137
+msgid "Winder"
 
28138
+msgstr ""
 
28139
+
 
28140
+#. A city in Minnesota in the United States
 
28141
+#: ../data/Locations.xml.in.h:9635
 
28142
+msgid "Windom"
 
28143
+msgstr ""
 
28144
+
 
28145
+#. A city in Arizona in the United States
 
28146
+#: ../data/Locations.xml.in.h:9637
 
28147
+msgid "Window Rock"
 
28148
+msgstr ""
 
28149
+
 
28150
+#. A city in Ontario in Canada
 
28151
+#: ../data/Locations.xml.in.h:9639
 
28152
+msgid "Windsor"
 
28153
+msgstr ""
 
28154
+
 
28155
+#. A city in Connecticut in the United States
 
28156
+#: ../data/Locations.xml.in.h:9641
 
28157
+msgid "Windsor Locks"
 
28158
+msgstr ""
 
28159
+
 
28160
+#. A city in Kansas in the United States
 
28161
+#: ../data/Locations.xml.in.h:9643
 
28162
+msgid "Winfield"
 
28163
+msgstr ""
 
28164
+
 
28165
+#. A city in Texas in the United States
 
28166
+#: ../data/Locations.xml.in.h:9645
 
28167
+msgid "Wink"
 
28168
+msgstr ""
 
28169
+
 
28170
+#. A city in Nevada in the United States
 
28171
+#: ../data/Locations.xml.in.h:9647
 
28172
+msgid "Winnemucca"
 
28173
+msgstr ""
 
28174
+
 
28175
+#. A city in Manitoba in Canada
 
28176
+#: ../data/Locations.xml.in.h:9649
 
28177
+msgid "Winnipeg"
 
28178
+msgstr ""
 
28179
+
 
28180
+#. A city in Minnesota in the United States
 
28181
+#: ../data/Locations.xml.in.h:9651
 
28182
+msgid "Winona"
 
28183
+msgstr ""
 
28184
+
 
28185
+#. A city in Arizona in the United States
 
28186
+#: ../data/Locations.xml.in.h:9653
 
28187
+msgid "Winslow"
 
28188
+msgstr ""
 
28189
+
 
28190
+#. A city in North Carolina in the United States
 
28191
+#: ../data/Locations.xml.in.h:9655
 
28192
+msgid "Winston-Salem"
 
28193
+msgstr ""
 
28194
+
 
28195
+#. A city in British Columbia in Canada
 
28196
+#: ../data/Locations.xml.in.h:9657
 
28197
+msgid "Winter Harbour"
 
28198
+msgstr ""
 
28199
+
 
28200
+#. A city in Florida in the United States
 
28201
+#: ../data/Locations.xml.in.h:9659
 
28202
+msgid "Winter Haven"
 
28203
+msgstr ""
 
28204
+
 
28205
+#. A city in North Carolina in the United States
 
28206
+#: ../data/Locations.xml.in.h:9661
 
28207
+msgid "Winterville"
 
28208
+msgstr ""
 
28209
+
 
28210
+#. A city in Maine in the United States
 
28211
+#: ../data/Locations.xml.in.h:9663
 
28212
+msgid "Wiscasset"
 
28213
+msgstr ""
 
28214
+
 
28215
+#. A state/province/territory in United States
 
28216
+#: ../data/Locations.xml.in.h:9665
 
28217
+msgid "Wisconsin"
 
28218
+msgstr ""
 
28219
+
 
28220
+#. A city in Wisconsin in the United States
 
28221
+#: ../data/Locations.xml.in.h:9667
 
28222
+msgid "Wisconsin Rapids"
 
28223
+msgstr ""
 
28224
+
 
28225
+#. A city in Virginia in the United States
 
28226
+#: ../data/Locations.xml.in.h:9669
 
28227
+msgid "Wise"
 
28228
+msgstr ""
 
28229
+
 
28230
+#. A city in East and South East England in the United
 
28231
+#. Kingdom
 
28232
+#.
 
28233
+#: ../data/Locations.xml.in.h:9673
 
28234
+msgid "Wittering"
 
28235
+msgstr ""
 
28236
+
 
28237
+#. A city in the Netherlands
 
28238
+#: ../data/Locations.xml.in.h:9675
 
28239
+msgid "Woensdrecht"
 
28240
+msgstr ""
 
28241
+
 
28242
+#. A city in Montana in the United States
 
28243
+#: ../data/Locations.xml.in.h:9677
 
28244
+msgid "Wolf Point"
 
28245
+msgstr ""
 
28246
+
 
28247
+#. A city in Wisconsin in the United States
 
28248
+#: ../data/Locations.xml.in.h:9679
 
28249
+msgid "Woodruff"
 
28250
+msgstr ""
 
28251
+
 
28252
+#. A city in South Australia in Australia
 
28253
+#: ../data/Locations.xml.in.h:9681
 
28254
+msgid "Woomera"
 
28255
+msgstr ""
 
28256
+
 
28257
+#. A city in Ohio in the United States
 
28258
+#: ../data/Locations.xml.in.h:9683
 
28259
+msgid "Wooster"
 
28260
+msgstr ""
 
28261
+
 
28262
+#. A city in Massachusetts in the United States
 
28263
+#: ../data/Locations.xml.in.h:9685
 
28264
+msgid "Worcester"
 
28265
+msgstr ""
 
28266
+
 
28267
+#. A city in Wyoming in the United States
 
28268
+#: ../data/Locations.xml.in.h:9687
 
28269
+msgid "Worland"
 
28270
+msgstr ""
 
28271
+
 
28272
+#. A city in Minnesota in the United States
 
28273
+#: ../data/Locations.xml.in.h:9689
 
28274
+msgid "Worthington"
 
28275
+msgstr ""
 
28276
+
 
28277
+#. A city in Alaska in the United States
 
28278
+#: ../data/Locations.xml.in.h:9691
 
28279
+msgid "Wrangell"
 
28280
+msgstr ""
 
28281
+
 
28282
+#. A city in Poland
 
28283
+#: ../data/Locations.xml.in.h:9693
 
28284
+msgid "Wrocław"
 
28285
+msgstr ""
 
28286
+
 
28287
+#. A city in Hubei in China.
 
28288
+#. The name is also written "武汉".
 
28289
+#.
 
28290
+#: ../data/Locations.xml.in.h:9697
 
28291
+msgid "Wuhan"
 
28292
+msgstr ""
 
28293
+
 
28294
+#. A city in Lower Saxony in Germany
 
28295
+#: ../data/Locations.xml.in.h:9699
 
28296
+msgid "Wunstorf"
 
28297
+msgstr ""
 
28298
+
 
28299
+#. A city in Saskatchewan in Canada
 
28300
+#: ../data/Locations.xml.in.h:9701
 
28301
+msgid "Wynyard"
 
28302
+msgstr ""
 
28303
+
 
28304
+#. A city in Bavaria in Germany
 
28305
+#: ../data/Locations.xml.in.h:9703
 
28306
+msgid "Würzburg"
 
28307
+msgstr ""
 
28308
+
 
28309
+#. A city in Shaanxi in China.
 
28310
+#. The name is also written "西安".
 
28311
+#.
 
28312
+#: ../data/Locations.xml.in.h:9707
 
28313
+msgid "Xi'an"
 
28314
+msgstr ""
 
28315
+
 
28316
+#. A city in Fujian in China.
 
28317
+#. The name is also written "厦门".
 
28318
+#.
 
28319
+#: ../data/Locations.xml.in.h:9711
 
28320
+msgid "Xiamen"
 
28321
+msgstr ""
 
28322
+
 
28323
+#. A state/province/territory in China
 
28324
+#: ../data/Locations.xml.in.h:9713
 
28325
+msgid "Xinjiang"
 
28326
+msgstr ""
 
28327
+
 
28328
+#. A city in Bolivia
 
28329
+#: ../data/Locations.xml.in.h:9715
 
28330
+msgid "Yacuiba"
 
28331
+msgstr ""
 
28332
+
 
28333
+#. A city in Washington in the United States
 
28334
+#: ../data/Locations.xml.in.h:9717
 
28335
+msgid "Yakima"
 
28336
+msgstr ""
 
28337
+
 
28338
+#. A city in Alaska in the United States
 
28339
+#: ../data/Locations.xml.in.h:9719
 
28340
+msgid "Yakutat"
 
28341
+msgstr ""
 
28342
+
 
28343
+#. A city in Russia
 
28344
+#: ../data/Locations.xml.in.h:9721
 
28345
+msgid "Yakutsk"
 
28346
+msgstr ""
 
28347
+
 
28348
+#. A Russian time zone, used in the city of Yakutsk and
 
28349
+#. surrounding areas of east-central Russia. The Russian
 
28350
+#. name is "Якутское время". This string is only used in
 
28351
+#. places where "Russia" is already clear from context.
 
28352
+#.
 
28353
+#: ../data/Locations.xml.in.h:9727
 
28354
+msgid "Yakutsk Time"
 
28355
+msgstr ""
 
28356
+
 
28357
+#. A city in Japan
 
28358
+#: ../data/Locations.xml.in.h:9729
 
28359
+msgid "Yamagata"
 
28360
+msgstr ""
 
28361
+
 
28362
+#. A city in Japan
 
28363
+#: ../data/Locations.xml.in.h:9731
 
28364
+msgid "Yamaguchi"
 
28365
+msgstr ""
 
28366
+
 
28367
+#. A city in Saudi Arabia
 
28368
+#: ../data/Locations.xml.in.h:9733
 
28369
+msgid "Yanbu' al Bahr"
 
28370
+msgstr ""
 
28371
+
 
28372
+#. A city in South Dakota in the United States
 
28373
+#: ../data/Locations.xml.in.h:9735
 
28374
+msgid "Yankton"
 
28375
+msgstr ""
 
28376
+
 
28377
+#. A city in Japan
 
28378
+#: ../data/Locations.xml.in.h:9737
 
28379
+msgid "Yao"
 
28380
+msgstr ""
 
28381
+
 
28382
+#. The capital of Cameroon
 
28383
+#: ../data/Locations.xml.in.h:9739
 
28384
+msgid "Yaounde"
 
28385
+msgstr ""
 
28386
+
 
28387
+#. One of two time zones in the Federated States of
 
28388
+#. Micronesia, including the islands of Yap and Chuuk. The
 
28389
+#. string is only used in places where "Micronesia" is
 
28390
+#. already clear from context.
 
28391
+#.
 
28392
+#: ../data/Locations.xml.in.h:9745
 
28393
+msgid "Yap / Chuuk"
 
28394
+msgstr ""
 
28395
+
 
28396
+#. A city in Nova Scotia in Canada
 
28397
+#: ../data/Locations.xml.in.h:9747
 
28398
+msgid "Yarmouth"
 
28399
+msgstr ""
 
28400
+
 
28401
+#. A city in Iran.
 
28402
+#. The name is also written "يزد".
 
28403
+#.
 
28404
+#: ../data/Locations.xml.in.h:9751
 
28405
+msgid "Yazd"
 
28406
+msgstr ""
 
28407
+
 
28408
+#. A city in Russia
 
28409
+#: ../data/Locations.xml.in.h:9753
 
28410
+msgid "Yekaterinburg"
 
28411
+msgstr ""
 
28412
+
 
28413
+#. A Russian time zone, used along the Ural mountains,
 
28414
+#. including the city of Yekaterinburg. The Russian name is
 
28415
+#. "Екатеринбургское время". This string is only used in
 
28416
+#. places where "Russia" is already clear from context.
 
28417
+#.
 
28418
+#: ../data/Locations.xml.in.h:9759
 
28419
+msgid "Yekaterinburg Time"
 
28420
+msgstr ""
 
28421
+
 
28422
+#. A city in Northwest Territories in Canada
 
28423
+#: ../data/Locations.xml.in.h:9761
 
28424
+msgid "Yellowknife"
 
28425
+msgstr ""
 
28426
+
 
28427
+#. YE - Yemen
 
28428
+#: ../data/Locations.xml.in.h:9763
 
28429
+msgid "Yemen"
 
28430
+msgstr ""
 
28431
+
 
28432
+#. A city in South and South West England in the United
 
28433
+#. Kingdom
 
28434
+#.
 
28435
+#: ../data/Locations.xml.in.h:9767
 
28436
+msgid "Yeovilton"
 
28437
+msgstr ""
 
28438
+
 
28439
+#. The capital of Armenia
 
28440
+#: ../data/Locations.xml.in.h:9769
 
28441
+msgid "Yerevan"
 
28442
+msgstr ""
 
28443
+
 
28444
+#. A city in Japan
 
28445
+#: ../data/Locations.xml.in.h:9771
 
28446
+msgid "Yokota"
 
28447
+msgstr ""
 
28448
+
 
28449
+#. A city in New York in the United States
 
28450
+#: ../data/Locations.xml.in.h:9773
 
28451
+msgid "Yonkers"
 
28452
+msgstr ""
 
28453
+
 
28454
+#. A city in Saskatchewan in Canada
 
28455
+#: ../data/Locations.xml.in.h:9775
 
28456
+msgid "Yorkton"
 
28457
+msgstr ""
 
28458
+
 
28459
+#. A city in Honduras
 
28460
+#: ../data/Locations.xml.in.h:9777
 
28461
+msgid "Yoro"
 
28462
+msgstr ""
 
28463
+
 
28464
+#. A city in Japan
 
28465
+#: ../data/Locations.xml.in.h:9779
 
28466
+msgid "Yoshinaga"
 
28467
+msgstr ""
 
28468
+
 
28469
+#. A city in Ohio in the United States
 
28470
+#: ../data/Locations.xml.in.h:9781
 
28471
+msgid "Youngstown"
 
28472
+msgstr ""
 
28473
+
 
28474
+#. A city in Iceland
 
28475
+#: ../data/Locations.xml.in.h:9783
 
28476
+msgid "Ytri-Njarðvík"
 
28477
+msgstr ""
 
28478
+
 
28479
+#. A state/province/territory in Mexico
 
28480
+#: ../data/Locations.xml.in.h:9785
 
28481
+msgid "Yucatán"
 
28482
+msgstr ""
 
28483
+
 
28484
+#. FIXME: rename this to Yukon
 
28485
+#: ../data/Locations.xml.in.h:9787
 
28486
+msgid "Yukon Territory"
 
28487
+msgstr ""
 
28488
+
 
28489
+#. A city in Arizona in the United States
 
28490
+#: ../data/Locations.xml.in.h:9789
 
28491
+msgid "Yuma"
 
28492
+msgstr ""
 
28493
+
 
28494
+#. A state/province/territory in China
 
28495
+#: ../data/Locations.xml.in.h:9791
 
28496
+msgid "Yunnan"
 
28497
+msgstr ""
 
28498
+
 
28499
+#. A city in Russia
 
28500
+#: ../data/Locations.xml.in.h:9793
 
28501
+msgid "Yuzhno-Sakhalinsk"
 
28502
+msgstr ""
 
28503
+
 
28504
+#. A city in Iran.
 
28505
+#. The name is also written "زابل".
 
28506
+#.
 
28507
+#: ../data/Locations.xml.in.h:9797
 
28508
+msgid "Zabol"
 
28509
+msgstr ""
 
28510
+
 
28511
+#. A city in Croatia
 
28512
+#: ../data/Locations.xml.in.h:9799
 
28513
+msgid "Zadar"
 
28514
+msgstr ""
 
28515
+
 
28516
+#. The capital of Croatia
 
28517
+#: ../data/Locations.xml.in.h:9801
 
28518
+msgid "Zagreb"
 
28519
+msgstr ""
 
28520
+
 
28521
+#. A city in Iran.
 
28522
+#. The name is also written "زاهدان (کي)".
 
28523
+#.
 
28524
+#: ../data/Locations.xml.in.h:9805
 
28525
+msgid "Zahedan-e (Yek)"
 
28526
+msgstr ""
 
28527
+
 
28528
+#. ZM - Zambia
 
28529
+#: ../data/Locations.xml.in.h:9807
 
28530
+msgid "Zambia"
 
28531
+msgstr ""
 
28532
+
 
28533
+#. A city in the Philippines
 
28534
+#: ../data/Locations.xml.in.h:9809
 
28535
+msgid "Zamboanga City"
 
28536
+msgstr ""
 
28537
+
 
28538
+#. A city in Suriname
 
28539
+#: ../data/Locations.xml.in.h:9811
 
28540
+msgid "Zanderij"
 
28541
+msgstr ""
 
28542
+
 
28543
+#. A city in Ohio in the United States
 
28544
+#: ../data/Locations.xml.in.h:9813
 
28545
+msgid "Zanesville"
 
28546
+msgstr ""
 
28547
+
 
28548
+#. A city in Tanzania
 
28549
+#: ../data/Locations.xml.in.h:9815
 
28550
+msgid "Zanzibar"
 
28551
+msgstr ""
 
28552
+
 
28553
+#. A city in Spain
 
28554
+#: ../data/Locations.xml.in.h:9817
 
28555
+msgid "Zaragoza"
 
28556
+msgstr ""
 
28557
+
 
28558
+#. A city in Austria
 
28559
+#: ../data/Locations.xml.in.h:9819
 
28560
+msgid "Zell am See"
 
28561
+msgstr ""
 
28562
+
 
28563
+#. A city in Austria
 
28564
+#: ../data/Locations.xml.in.h:9821
 
28565
+msgid "Zeltweg"
 
28566
+msgstr ""
 
28567
+
 
28568
+#. A city in Serbia
 
28569
+#: ../data/Locations.xml.in.h:9823
 
28570
+msgid "Zemun"
 
28571
+msgstr ""
 
28572
+
 
28573
+#. A state/province/territory in China
 
28574
+#: ../data/Locations.xml.in.h:9825
 
28575
+msgid "Zhejiang"
 
28576
+msgstr ""
 
28577
+
 
28578
+#. A city in Henan in China.
 
28579
+#. The name is also written "郑州".
 
28580
+#.
 
28581
+#: ../data/Locations.xml.in.h:9829
 
28582
+msgid "Zhengzhou"
 
28583
+msgstr ""
 
28584
+
 
28585
+#. A city in Senegal
 
28586
+#: ../data/Locations.xml.in.h:9831
 
28587
+msgid "Ziguinchor"
 
28588
+msgstr ""
 
28589
+
 
28590
+#. ZW - Zimbabwe
 
28591
+#: ../data/Locations.xml.in.h:9833
 
28592
+msgid "Zimbabwe"
 
28593
+msgstr ""
 
28594
+
 
28595
+#. A city in Niger
 
28596
+#: ../data/Locations.xml.in.h:9835
 
28597
+msgid "Zinder"
 
28598
+msgstr ""
 
28599
+
 
28600
+#. A city in Rhineland-Palatinate in Germany
 
28601
+#: ../data/Locations.xml.in.h:9837
 
28602
+msgid "Zweibrücken"
 
28603
+msgstr ""
 
28604
+
 
28605
+#. A city in Greece
 
28606
+#: ../data/Locations.xml.in.h:9839
 
28607
+msgid "Zákynthos"
 
28608
+msgstr ""
 
28609
+
 
28610
+#. A city in Switzerland
 
28611
+#: ../data/Locations.xml.in.h:9841
 
28612
+msgid "Zürich"
 
28613
+msgstr ""
 
28614
+
 
28615
+#. A city in Italy
 
28616
+#: ../data/Locations.xml.in.h:9843
 
28617
+msgid "Àrbatax"
 
28618
+msgstr ""
 
28619
+
 
28620
+#. A city in Portugal
 
28621
+#: ../data/Locations.xml.in.h:9845
 
28622
+msgid "Água de Pena"
 
28623
+msgstr ""
 
28624
+
 
28625
+#. A city in Greece
 
28626
+#: ../data/Locations.xml.in.h:9847
 
28627
+msgid "Áno Síros"
 
28628
+msgstr ""
 
28629
+
 
28630
+#. A city in Greece
 
28631
+#: ../data/Locations.xml.in.h:9849
 
28632
+msgid "Áraxos"
 
28633
+msgstr ""
 
28634
+
 
28635
+#. A city in Greece
 
28636
+#: ../data/Locations.xml.in.h:9851
 
28637
+msgid "Áyios Athanásios"
 
28638
+msgstr ""
 
28639
+
 
28640
+#. A city in Sweden
 
28641
+#: ../data/Locations.xml.in.h:9853
 
28642
+msgid "Ängelholm"
 
28643
+msgstr ""
 
28644
+
 
28645
+#. AX - Åland Islands, an autonomous province of Finland
 
28646
+#: ../data/Locations.xml.in.h:9855
 
28647
+msgid "Åland Islands"
 
28648
+msgstr ""
 
28649
+
 
28650
+#. A city in Denmark
 
28651
+#: ../data/Locations.xml.in.h:9857
 
28652
+msgid "Ålborg"
 
28653
+msgstr ""
 
28654
+
 
28655
+#. A city in Norway
 
28656
+#: ../data/Locations.xml.in.h:9859
 
28657
+msgid "Ålesund"
 
28658
+msgstr ""
 
28659
+
 
28660
+#. A city in France
 
28661
+#: ../data/Locations.xml.in.h:9861
 
28662
+msgid "Évreux"
 
28663
+msgstr ""
 
28664
+
 
28665
+#. A city in Sweden
 
28666
+#: ../data/Locations.xml.in.h:9863
 
28667
+msgid "Örebro"
 
28668
+msgstr ""
 
28669
+
 
28670
+#. A city in Sweden
 
28671
+#: ../data/Locations.xml.in.h:9865
 
28672
+msgid "Örnsköldsvik"
 
28673
+msgstr ""
 
28674
+
 
28675
+#. A city in Norway
 
28676
+#: ../data/Locations.xml.in.h:9867
 
28677
+msgid "Ørsta"
 
28678
+msgstr ""
 
28679
+
 
28680
+#. A city in Poland
 
28681
+#: ../data/Locations.xml.in.h:9869
 
28682
+msgid "Łódź"
 
28683
+msgstr ""
 
28684
+
 
28685
+#. A city in Lithuania
 
28686
+#: ../data/Locations.xml.in.h:9871
 
28687
+msgid "Šiauliai"
 
28688
+msgstr ""
 
28689
--- /dev/null
 
28690
+++ libgweather-2.30.3/po/libgweather.pot
 
28691
@@ -0,0 +1,931 @@
 
28692
+# SOME DESCRIPTIVE TITLE.
 
28693
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 
28694
+# This file is distributed under the same license as the PACKAGE package.
 
28695
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 
28696
+#
 
28697
+#, fuzzy
 
28698
+msgid ""
 
28699
+msgstr ""
 
28700
+"Project-Id-Version: PACKAGE VERSION\n"
 
28701
+"Report-Msgid-Bugs-To: \n"
 
28702
+"POT-Creation-Date: 2010-10-09 14:21+0000\n"
 
28703
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 
28704
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 
28705
+"Language-Team: LANGUAGE <LL@li.org>\n"
 
28706
+"Language: \n"
 
28707
+"MIME-Version: 1.0\n"
 
28708
+"Content-Type: text/plain; charset=UTF-8\n"
 
28709
+"Content-Transfer-Encoding: 8bit\n"
 
28710
+
 
28711
+#. TRANSLATOR: Change this to the default location name,
 
28712
+#. * used when you first start the Weather Applet. This is
 
28713
+#. * the common localised name that corresponds to
 
28714
+#. * the location code (DEFAULT_CODE) you will put on the next message
 
28715
+#. * For example, for the Greek locale, we set this to "Athens", the
 
28716
+#. * capital city and we write it in Greek. It's important to translate
 
28717
+#. * this name.
 
28718
+#. *
 
28719
+#. * If you do not require a DEFAULT_LOCATION, set this to
 
28720
+#. * "DEFAULT_LOCATION".
 
28721
+#.
 
28722
+#: ../libgweather/gweather-gconf.c:212 ../libgweather/gweather-gconf.c:213
 
28723
+#: ../libgweather/gweather.schemas.in.h:5
 
28724
+msgid "DEFAULT_LOCATION"
 
28725
+msgstr ""
 
28726
+
 
28727
+#. TRANSLATOR: Change this to the code of your default location that
 
28728
+#. * corresponds to the DEFAULT_LOCATION name you put above. This is
 
28729
+#. * normally a four-letter (ICAO) code and can be found in
 
28730
+#. * http://git.gnome.org/cgit/libgweather/plain/data/Locations.xml.in
 
28731
+#. * NB. The web page is over 1.7MB in size.
 
28732
+#. * Pick a default location like a capital city so that it would be ok
 
28733
+#. * for more of your users. For example, for Greek, we use "LGAV" for
 
28734
+#. * the capital city, Athens.
 
28735
+#. *
 
28736
+#. * If you do not require a DEFAULT_CODE, set this to "DEFAULT_CODE".
 
28737
+#.
 
28738
+#: ../libgweather/gweather-gconf.c:232 ../libgweather/gweather-gconf.c:233
 
28739
+#: ../libgweather/gweather.schemas.in.h:3
 
28740
+msgid "DEFAULT_CODE"
 
28741
+msgstr ""
 
28742
+
 
28743
+#. TRANSLATOR: Change this to the zone of your default location that
 
28744
+#. * corresponds to the DEFAULT_LOCATION and DEFAULT_CODE you put above.
 
28745
+#. * Normally, US and Canada locations have zones while the rest do not.
 
28746
+#. * Check
 
28747
+#. * http://git.gnome.org/cgit/libgweather/plain/data/Locations.xml.in
 
28748
+#. * as any zone you put here must also be present in the Locations.xml
 
28749
+#. * file.
 
28750
+#. *
 
28751
+#. * If your default location does not have a zone, set this to
 
28752
+#. * "DEFAULT_ZONE".
 
28753
+#.
 
28754
+#: ../libgweather/gweather-gconf.c:252 ../libgweather/gweather-gconf.c:253
 
28755
+#: ../libgweather/gweather.schemas.in.h:7
 
28756
+msgid "DEFAULT_ZONE"
 
28757
+msgstr ""
 
28758
+
 
28759
+#. TRANSLATOR: Change this to the radar of your default location that
 
28760
+#. * corresponds to the DEFAULT_LOCATION and DEFAULT_CODE you put above.
 
28761
+#. * Normally, US and Canada locations have radar names while the rest do
 
28762
+#. * not. Check
 
28763
+#. * http://git.gnome.org/cgit/libgweather/plain/data/Locations.xml.in
 
28764
+#. * as any radar you put here must also be present in the Locations.xml
 
28765
+#. * file.
 
28766
+#. *
 
28767
+#. * If your default location does not have a radar, set this to " "
 
28768
+#. * (or space).
 
28769
+#. * If you do not have a default location, set this to DEFAULT_RADAR.
 
28770
+#.
 
28771
+#: ../libgweather/gweather-gconf.c:273 ../libgweather/gweather-gconf.c:274
 
28772
+#: ../libgweather/gweather.schemas.in.h:6
 
28773
+msgid "DEFAULT_RADAR"
 
28774
+msgstr ""
 
28775
+
 
28776
+#. TRANSLATOR: Change this to the coordinates of your default location
 
28777
+#. * that corresponds to the DEFAULT_LOCATION and DEFAULT_CODE you put
 
28778
+#. * above. Check
 
28779
+#. * http://git.gnome.org/cgit/libgweather/plain/data/Locations.xml.in
 
28780
+#. * as any coordinates you put here must also be present in the
 
28781
+#. * Locations.xml file.
 
28782
+#. *
 
28783
+#. * If your default location does not have known coordinates, set this
 
28784
+#. * to " " (or space).
 
28785
+#. * If you do not have a default location, set this to
 
28786
+#. * DEFAULT_COORDINATES.
 
28787
+#.
 
28788
+#: ../libgweather/gweather-gconf.c:294 ../libgweather/gweather-gconf.c:295
 
28789
+#: ../libgweather/gweather.schemas.in.h:4
 
28790
+msgid "DEFAULT_COORDINATES"
 
28791
+msgstr ""
 
28792
+
 
28793
+#: ../libgweather/gweather-prefs.c:34 ../libgweather/gweather-prefs.c:45
 
28794
+#: ../libgweather/gweather-prefs.c:60 ../libgweather/gweather-prefs.c:77
 
28795
+msgid "Default"
 
28796
+msgstr ""
 
28797
+
 
28798
+#. translators: Kelvin
 
28799
+#: ../libgweather/gweather-prefs.c:36
 
28800
+msgid "K"
 
28801
+msgstr ""
 
28802
+
 
28803
+#. translators: Celsius
 
28804
+#: ../libgweather/gweather-prefs.c:38
 
28805
+msgid "C"
 
28806
+msgstr ""
 
28807
+
 
28808
+#. translators: Fahrenheit
 
28809
+#: ../libgweather/gweather-prefs.c:40
 
28810
+msgid "F"
 
28811
+msgstr ""
 
28812
+
 
28813
+#. translators: meters per second
 
28814
+#: ../libgweather/gweather-prefs.c:47
 
28815
+msgid "m/s"
 
28816
+msgstr ""
 
28817
+
 
28818
+#. translators: kilometers per hour
 
28819
+#: ../libgweather/gweather-prefs.c:49
 
28820
+msgid "km/h"
 
28821
+msgstr ""
 
28822
+
 
28823
+#. translators: miles per hour
 
28824
+#: ../libgweather/gweather-prefs.c:51
 
28825
+msgid "mph"
 
28826
+msgstr ""
 
28827
+
 
28828
+#. translators: knots (speed unit)
 
28829
+#: ../libgweather/gweather-prefs.c:53
 
28830
+msgid "knots"
 
28831
+msgstr ""
 
28832
+
 
28833
+#. translators: wind speed
 
28834
+#: ../libgweather/gweather-prefs.c:55
 
28835
+msgid "Beaufort scale"
 
28836
+msgstr ""
 
28837
+
 
28838
+#. translators: kilopascals
 
28839
+#: ../libgweather/gweather-prefs.c:62
 
28840
+msgid "kPa"
 
28841
+msgstr ""
 
28842
+
 
28843
+#. translators: hectopascals
 
28844
+#: ../libgweather/gweather-prefs.c:64
 
28845
+msgid "hPa"
 
28846
+msgstr ""
 
28847
+
 
28848
+#. translators: millibars
 
28849
+#: ../libgweather/gweather-prefs.c:66
 
28850
+msgid "mb"
 
28851
+msgstr ""
 
28852
+
 
28853
+#. translators: millimeters of mercury
 
28854
+#: ../libgweather/gweather-prefs.c:68
 
28855
+msgid "mmHg"
 
28856
+msgstr ""
 
28857
+
 
28858
+#. translators: inches of mercury
 
28859
+#: ../libgweather/gweather-prefs.c:70
 
28860
+msgid "inHg"
 
28861
+msgstr ""
 
28862
+
 
28863
+#. translators: atmosphere
 
28864
+#: ../libgweather/gweather-prefs.c:72
 
28865
+msgid "atm"
 
28866
+msgstr ""
 
28867
+
 
28868
+#. translators: meters
 
28869
+#: ../libgweather/gweather-prefs.c:79
 
28870
+msgid "m"
 
28871
+msgstr ""
 
28872
+
 
28873
+#. translators: kilometers
 
28874
+#: ../libgweather/gweather-prefs.c:81
 
28875
+msgid "km"
 
28876
+msgstr ""
 
28877
+
 
28878
+#. translators: miles
 
28879
+#: ../libgweather/gweather-prefs.c:83
 
28880
+msgid "mi"
 
28881
+msgstr ""
 
28882
+
 
28883
+#. TRANSLATOR: This is the default unit to use for temperature measurements.
 
28884
+#. Valid values are: "K" (Kelvin), "C" (Celsius) and "F" (Fahrenheit)
 
28885
+#: ../libgweather/gweather-prefs.c:103 ../libgweather/gweather-prefs.c:111
 
28886
+msgid "DEFAULT_TEMP_UNIT"
 
28887
+msgstr ""
 
28888
+
 
28889
+#. TRANSLATOR: This is the default unit to use for wind speed.
 
28890
+#. Valid values are: "m/s" (meters per second), "km/h" (kilometers per hour),
 
28891
+#. "mph" (miles per hour) and "knots"
 
28892
+#: ../libgweather/gweather-prefs.c:141 ../libgweather/gweather-prefs.c:151
 
28893
+msgid "DEFAULT_SPEED_UNIT"
 
28894
+msgstr ""
 
28895
+
 
28896
+#. TRANSLATOR: This is the default unit to use for atmospheric pressure.
 
28897
+#. Valid values are: "kPa" (kiloPascals), "hPa" (hectoPascals),
 
28898
+#. "mb" (millibars), "mmHg" (millimeters of mercury),
 
28899
+#. "inHg" (inches of mercury) and "atm" (atmosphere)
 
28900
+#: ../libgweather/gweather-prefs.c:183 ../libgweather/gweather-prefs.c:194
 
28901
+msgid "DEFAULT_PRESSURE_UNIT"
 
28902
+msgstr ""
 
28903
+
 
28904
+#. TRANSLATOR: This is the default unit to use for visibility distance.
 
28905
+#. Valid values are: "m" (meters), "km" (kilometers) and "mi" (miles)
 
28906
+#: ../libgweather/gweather-prefs.c:224 ../libgweather/gweather-prefs.c:233
 
28907
+msgid "DEFAULT_DISTANCE_UNIT"
 
28908
+msgstr ""
 
28909
+
 
28910
+#: ../libgweather/gweather-timezone.c:322
 
28911
+msgid "Greenwich Mean Time"
 
28912
+msgstr ""
 
28913
+
 
28914
+#: ../libgweather/gweather.schemas.in.h:1
 
28915
+msgid ""
 
28916
+"A three-digit-long code for retrieving radar maps from weather.com, found "
 
28917
+"from http://git.gnome.org/cgit/libgweather/plain/data/Locations.xml.in"
 
28918
+msgstr ""
 
28919
+
 
28920
+#: ../libgweather/gweather.schemas.in.h:2
 
28921
+msgid ""
 
28922
+"A unique zone for the city, as found from http://git.gnome.org/cgit/"
 
28923
+"libgweather/plain/data/Locations.xml.in"
 
28924
+msgstr ""
 
28925
+
 
28926
+#: ../libgweather/gweather.schemas.in.h:8
 
28927
+msgid ""
 
28928
+"Determines whether the applet automatically updates its weather statistics "
 
28929
+"or not."
 
28930
+msgstr ""
 
28931
+
 
28932
+#: ../libgweather/gweather.schemas.in.h:9
 
28933
+msgid "Display radar map"
 
28934
+msgstr ""
 
28935
+
 
28936
+#: ../libgweather/gweather.schemas.in.h:10
 
28937
+msgid "Distance unit"
 
28938
+msgstr ""
 
28939
+
 
28940
+#: ../libgweather/gweather.schemas.in.h:11
 
28941
+msgid "Fetch a radar map on each update."
 
28942
+msgstr ""
 
28943
+
 
28944
+#: ../libgweather/gweather.schemas.in.h:12
 
28945
+msgid ""
 
28946
+"If true, then retrieve a radar map from a location specified by the \"radar"
 
28947
+"\" key."
 
28948
+msgstr ""
 
28949
+
 
28950
+#: ../libgweather/gweather.schemas.in.h:13
 
28951
+msgid ""
 
28952
+"Latitude and longitude of your location expressed in DD-MM-SS[NS] DD-MM-SS"
 
28953
+"[EW]."
 
28954
+msgstr ""
 
28955
+
 
28956
+#: ../libgweather/gweather.schemas.in.h:14
 
28957
+msgid "Location coordinates"
 
28958
+msgstr ""
 
28959
+
 
28960
+#: ../libgweather/gweather.schemas.in.h:15
 
28961
+msgid "Nearby city"
 
28962
+msgstr ""
 
28963
+
 
28964
+#: ../libgweather/gweather.schemas.in.h:16
 
28965
+msgid ""
 
28966
+"Nearby major zone, such as a capital city, as found from http://git.gnome."
 
28967
+"org/cgit/libgweather/plain/data/Locations.xml.in"
 
28968
+msgstr ""
 
28969
+
 
28970
+#: ../libgweather/gweather.schemas.in.h:17
 
28971
+msgid "Not used anymore"
 
28972
+msgstr ""
 
28973
+
 
28974
+#: ../libgweather/gweather.schemas.in.h:18
 
28975
+msgid "Pressure unit"
 
28976
+msgstr ""
 
28977
+
 
28978
+#: ../libgweather/gweather.schemas.in.h:19
 
28979
+msgid "Radar location"
 
28980
+msgstr ""
 
28981
+
 
28982
+#: ../libgweather/gweather.schemas.in.h:20
 
28983
+msgid "Speed unit"
 
28984
+msgstr ""
 
28985
+
 
28986
+#: ../libgweather/gweather.schemas.in.h:21
 
28987
+msgid "Temperature unit"
 
28988
+msgstr ""
 
28989
+
 
28990
+#: ../libgweather/gweather.schemas.in.h:22
 
28991
+msgid "The city that gweather displays information for."
 
28992
+msgstr ""
 
28993
+
 
28994
+#: ../libgweather/gweather.schemas.in.h:23
 
28995
+msgid "The custom url from where to retrieve a radar map."
 
28996
+msgstr ""
 
28997
+
 
28998
+#: ../libgweather/gweather.schemas.in.h:24
 
28999
+msgid "The interval, in seconds, between automatic updates."
 
29000
+msgstr ""
 
29001
+
 
29002
+#: ../libgweather/gweather.schemas.in.h:25
 
29003
+msgid "The unit to use for pressure."
 
29004
+msgstr ""
 
29005
+
 
29006
+#: ../libgweather/gweather.schemas.in.h:26
 
29007
+msgid "The unit to use for temperature."
 
29008
+msgstr ""
 
29009
+
 
29010
+#: ../libgweather/gweather.schemas.in.h:27
 
29011
+msgid "The unit to use for visibility."
 
29012
+msgstr ""
 
29013
+
 
29014
+#: ../libgweather/gweather.schemas.in.h:28
 
29015
+msgid "The unit to use for wind speed."
 
29016
+msgstr ""
 
29017
+
 
29018
+#: ../libgweather/gweather.schemas.in.h:29
 
29019
+msgid "Update interval"
 
29020
+msgstr ""
 
29021
+
 
29022
+#: ../libgweather/gweather.schemas.in.h:30
 
29023
+msgid "Update the data automatically"
 
29024
+msgstr ""
 
29025
+
 
29026
+#: ../libgweather/gweather.schemas.in.h:31
 
29027
+msgid "Url for the radar map"
 
29028
+msgstr ""
 
29029
+
 
29030
+#: ../libgweather/gweather.schemas.in.h:32
 
29031
+msgid "Use custom url for the radar map"
 
29032
+msgstr ""
 
29033
+
 
29034
+#: ../libgweather/gweather.schemas.in.h:33
 
29035
+msgid "Use metric units"
 
29036
+msgstr ""
 
29037
+
 
29038
+#: ../libgweather/gweather.schemas.in.h:34
 
29039
+msgid "Use metric units instead of english units."
 
29040
+msgstr ""
 
29041
+
 
29042
+#: ../libgweather/gweather.schemas.in.h:35
 
29043
+msgid "Weather for a city"
 
29044
+msgstr ""
 
29045
+
 
29046
+#: ../libgweather/gweather.schemas.in.h:36
 
29047
+msgid "Weather location information"
 
29048
+msgstr ""
 
29049
+
 
29050
+#: ../libgweather/gweather.schemas.in.h:37
 
29051
+msgid "Weather location information."
 
29052
+msgstr ""
 
29053
+
 
29054
+#: ../libgweather/gweather.schemas.in.h:38
 
29055
+msgid "Zone location"
 
29056
+msgstr ""
 
29057
+
 
29058
+#: ../libgweather/timezone-menu.c:277
 
29059
+msgctxt "timezone"
 
29060
+msgid "Unknown"
 
29061
+msgstr ""
 
29062
+
 
29063
+#. Translators: %d is an error code, and %s the error string
 
29064
+#: ../libgweather/weather-metar.c:504
 
29065
+#, c-format
 
29066
+msgid "Failed to get METAR data: %d %s.\n"
 
29067
+msgstr ""
 
29068
+
 
29069
+#: ../libgweather/weather-metar.c:548
 
29070
+msgid "WeatherInfo missing location"
 
29071
+msgstr ""
 
29072
+
 
29073
+#: ../libgweather/weather.c:232
 
29074
+msgid "Variable"
 
29075
+msgstr ""
 
29076
+
 
29077
+#: ../libgweather/weather.c:233
 
29078
+msgid "North"
 
29079
+msgstr ""
 
29080
+
 
29081
+#: ../libgweather/weather.c:233
 
29082
+msgid "North - NorthEast"
 
29083
+msgstr ""
 
29084
+
 
29085
+#: ../libgweather/weather.c:233
 
29086
+msgid "Northeast"
 
29087
+msgstr ""
 
29088
+
 
29089
+#: ../libgweather/weather.c:233
 
29090
+msgid "East - NorthEast"
 
29091
+msgstr ""
 
29092
+
 
29093
+#: ../libgweather/weather.c:234
 
29094
+msgid "East"
 
29095
+msgstr ""
 
29096
+
 
29097
+#: ../libgweather/weather.c:234
 
29098
+msgid "East - Southeast"
 
29099
+msgstr ""
 
29100
+
 
29101
+#: ../libgweather/weather.c:234
 
29102
+msgid "Southeast"
 
29103
+msgstr ""
 
29104
+
 
29105
+#: ../libgweather/weather.c:234
 
29106
+msgid "South - Southeast"
 
29107
+msgstr ""
 
29108
+
 
29109
+#: ../libgweather/weather.c:235
 
29110
+msgid "South"
 
29111
+msgstr ""
 
29112
+
 
29113
+#: ../libgweather/weather.c:235
 
29114
+msgid "South - Southwest"
 
29115
+msgstr ""
 
29116
+
 
29117
+#: ../libgweather/weather.c:235
 
29118
+msgid "Southwest"
 
29119
+msgstr ""
 
29120
+
 
29121
+#: ../libgweather/weather.c:235
 
29122
+msgid "West - Southwest"
 
29123
+msgstr ""
 
29124
+
 
29125
+#: ../libgweather/weather.c:236
 
29126
+msgid "West"
 
29127
+msgstr ""
 
29128
+
 
29129
+#: ../libgweather/weather.c:236
 
29130
+msgid "West - Northwest"
 
29131
+msgstr ""
 
29132
+
 
29133
+#: ../libgweather/weather.c:236
 
29134
+msgid "Northwest"
 
29135
+msgstr ""
 
29136
+
 
29137
+#: ../libgweather/weather.c:236
 
29138
+msgid "North - Northwest"
 
29139
+msgstr ""
 
29140
+
 
29141
+#: ../libgweather/weather.c:243 ../libgweather/weather.c:260
 
29142
+#: ../libgweather/weather.c:332
 
29143
+msgid "Invalid"
 
29144
+msgstr ""
 
29145
+
 
29146
+#: ../libgweather/weather.c:249
 
29147
+msgid "Clear Sky"
 
29148
+msgstr ""
 
29149
+
 
29150
+#: ../libgweather/weather.c:250
 
29151
+msgid "Broken clouds"
 
29152
+msgstr ""
 
29153
+
 
29154
+#: ../libgweather/weather.c:251
 
29155
+msgid "Scattered clouds"
 
29156
+msgstr ""
 
29157
+
 
29158
+#: ../libgweather/weather.c:252
 
29159
+msgid "Few clouds"
 
29160
+msgstr ""
 
29161
+
 
29162
+#: ../libgweather/weather.c:253
 
29163
+msgid "Overcast"
 
29164
+msgstr ""
 
29165
+
 
29166
+#. TRANSLATOR: If you want to know what "blowing" "shallow" "partial"
 
29167
+#. * etc means, you can go to http://www.weather.com/glossary/ and
 
29168
+#. * http://www.crh.noaa.gov/arx/wx.tbl.php
 
29169
+#. NONE
 
29170
+#: ../libgweather/weather.c:292 ../libgweather/weather.c:294
 
29171
+msgid "Thunderstorm"
 
29172
+msgstr ""
 
29173
+
 
29174
+#. DRIZZLE
 
29175
+#: ../libgweather/weather.c:293
 
29176
+msgid "Drizzle"
 
29177
+msgstr ""
 
29178
+
 
29179
+#: ../libgweather/weather.c:293
 
29180
+msgid "Light drizzle"
 
29181
+msgstr ""
 
29182
+
 
29183
+#: ../libgweather/weather.c:293
 
29184
+msgid "Moderate drizzle"
 
29185
+msgstr ""
 
29186
+
 
29187
+#: ../libgweather/weather.c:293
 
29188
+msgid "Heavy drizzle"
 
29189
+msgstr ""
 
29190
+
 
29191
+#: ../libgweather/weather.c:293
 
29192
+msgid "Freezing drizzle"
 
29193
+msgstr ""
 
29194
+
 
29195
+#. RAIN
 
29196
+#: ../libgweather/weather.c:294
 
29197
+msgid "Rain"
 
29198
+msgstr ""
 
29199
+
 
29200
+#: ../libgweather/weather.c:294
 
29201
+msgid "Light rain"
 
29202
+msgstr ""
 
29203
+
 
29204
+#: ../libgweather/weather.c:294
 
29205
+msgid "Moderate rain"
 
29206
+msgstr ""
 
29207
+
 
29208
+#: ../libgweather/weather.c:294
 
29209
+msgid "Heavy rain"
 
29210
+msgstr ""
 
29211
+
 
29212
+#: ../libgweather/weather.c:294
 
29213
+msgid "Rain showers"
 
29214
+msgstr ""
 
29215
+
 
29216
+#: ../libgweather/weather.c:294
 
29217
+msgid "Freezing rain"
 
29218
+msgstr ""
 
29219
+
 
29220
+#. SNOW
 
29221
+#: ../libgweather/weather.c:295
 
29222
+msgid "Snow"
 
29223
+msgstr ""
 
29224
+
 
29225
+#: ../libgweather/weather.c:295
 
29226
+msgid "Light snow"
 
29227
+msgstr ""
 
29228
+
 
29229
+#: ../libgweather/weather.c:295
 
29230
+msgid "Moderate snow"
 
29231
+msgstr ""
 
29232
+
 
29233
+#: ../libgweather/weather.c:295
 
29234
+msgid "Heavy snow"
 
29235
+msgstr ""
 
29236
+
 
29237
+#: ../libgweather/weather.c:295
 
29238
+msgid "Snowstorm"
 
29239
+msgstr ""
 
29240
+
 
29241
+#: ../libgweather/weather.c:295
 
29242
+msgid "Blowing snowfall"
 
29243
+msgstr ""
 
29244
+
 
29245
+#: ../libgweather/weather.c:295
 
29246
+msgid "Snow showers"
 
29247
+msgstr ""
 
29248
+
 
29249
+#: ../libgweather/weather.c:295
 
29250
+msgid "Drifting snow"
 
29251
+msgstr ""
 
29252
+
 
29253
+#. SNOW_GRAINS
 
29254
+#: ../libgweather/weather.c:296
 
29255
+msgid "Snow grains"
 
29256
+msgstr ""
 
29257
+
 
29258
+#: ../libgweather/weather.c:296
 
29259
+msgid "Light snow grains"
 
29260
+msgstr ""
 
29261
+
 
29262
+#: ../libgweather/weather.c:296
 
29263
+msgid "Moderate snow grains"
 
29264
+msgstr ""
 
29265
+
 
29266
+#: ../libgweather/weather.c:296
 
29267
+msgid "Heavy snow grains"
 
29268
+msgstr ""
 
29269
+
 
29270
+#. ICE_CRYSTALS
 
29271
+#: ../libgweather/weather.c:297
 
29272
+msgid "Ice crystals"
 
29273
+msgstr ""
 
29274
+
 
29275
+#. ICE_PELLETS
 
29276
+#: ../libgweather/weather.c:298
 
29277
+msgid "Ice pellets"
 
29278
+msgstr ""
 
29279
+
 
29280
+#: ../libgweather/weather.c:298
 
29281
+msgid "Few ice pellets"
 
29282
+msgstr ""
 
29283
+
 
29284
+#: ../libgweather/weather.c:298
 
29285
+msgid "Moderate ice pellets"
 
29286
+msgstr ""
 
29287
+
 
29288
+#: ../libgweather/weather.c:298
 
29289
+msgid "Heavy ice pellets"
 
29290
+msgstr ""
 
29291
+
 
29292
+#: ../libgweather/weather.c:298
 
29293
+msgid "Ice pellet storm"
 
29294
+msgstr ""
 
29295
+
 
29296
+#: ../libgweather/weather.c:298
 
29297
+msgid "Showers of ice pellets"
 
29298
+msgstr ""
 
29299
+
 
29300
+#. HAIL
 
29301
+#: ../libgweather/weather.c:299
 
29302
+msgid "Hail"
 
29303
+msgstr ""
 
29304
+
 
29305
+#: ../libgweather/weather.c:299
 
29306
+msgid "Hailstorm"
 
29307
+msgstr ""
 
29308
+
 
29309
+#: ../libgweather/weather.c:299
 
29310
+msgid "Hail showers"
 
29311
+msgstr ""
 
29312
+
 
29313
+#. SMALL_HAIL
 
29314
+#: ../libgweather/weather.c:300
 
29315
+msgid "Small hail"
 
29316
+msgstr ""
 
29317
+
 
29318
+#: ../libgweather/weather.c:300
 
29319
+msgid "Small hailstorm"
 
29320
+msgstr ""
 
29321
+
 
29322
+#: ../libgweather/weather.c:300
 
29323
+msgid "Showers of small hail"
 
29324
+msgstr ""
 
29325
+
 
29326
+#. PRECIPITATION
 
29327
+#: ../libgweather/weather.c:301
 
29328
+msgid "Unknown precipitation"
 
29329
+msgstr ""
 
29330
+
 
29331
+#. MIST
 
29332
+#: ../libgweather/weather.c:302
 
29333
+msgid "Mist"
 
29334
+msgstr ""
 
29335
+
 
29336
+#. FOG
 
29337
+#: ../libgweather/weather.c:303
 
29338
+msgid "Fog"
 
29339
+msgstr ""
 
29340
+
 
29341
+#: ../libgweather/weather.c:303
 
29342
+msgid "Fog in the vicinity"
 
29343
+msgstr ""
 
29344
+
 
29345
+#: ../libgweather/weather.c:303
 
29346
+msgid "Shallow fog"
 
29347
+msgstr ""
 
29348
+
 
29349
+#: ../libgweather/weather.c:303
 
29350
+msgid "Patches of fog"
 
29351
+msgstr ""
 
29352
+
 
29353
+#: ../libgweather/weather.c:303
 
29354
+msgid "Partial fog"
 
29355
+msgstr ""
 
29356
+
 
29357
+#: ../libgweather/weather.c:303
 
29358
+msgid "Freezing fog"
 
29359
+msgstr ""
 
29360
+
 
29361
+#. SMOKE
 
29362
+#: ../libgweather/weather.c:304
 
29363
+msgid "Smoke"
 
29364
+msgstr ""
 
29365
+
 
29366
+#. VOLCANIC_ASH
 
29367
+#: ../libgweather/weather.c:305
 
29368
+msgid "Volcanic ash"
 
29369
+msgstr ""
 
29370
+
 
29371
+#. SAND
 
29372
+#: ../libgweather/weather.c:306
 
29373
+msgid "Sand"
 
29374
+msgstr ""
 
29375
+
 
29376
+#: ../libgweather/weather.c:306
 
29377
+msgid "Blowing sand"
 
29378
+msgstr ""
 
29379
+
 
29380
+#: ../libgweather/weather.c:306
 
29381
+msgid "Drifting sand"
 
29382
+msgstr ""
 
29383
+
 
29384
+#. HAZE
 
29385
+#: ../libgweather/weather.c:307
 
29386
+msgid "Haze"
 
29387
+msgstr ""
 
29388
+
 
29389
+#. SPRAY
 
29390
+#: ../libgweather/weather.c:308
 
29391
+msgid "Blowing sprays"
 
29392
+msgstr ""
 
29393
+
 
29394
+#. DUST
 
29395
+#: ../libgweather/weather.c:309
 
29396
+msgid "Dust"
 
29397
+msgstr ""
 
29398
+
 
29399
+#: ../libgweather/weather.c:309
 
29400
+msgid "Blowing dust"
 
29401
+msgstr ""
 
29402
+
 
29403
+#: ../libgweather/weather.c:309
 
29404
+msgid "Drifting dust"
 
29405
+msgstr ""
 
29406
+
 
29407
+#. SQUALL
 
29408
+#: ../libgweather/weather.c:310
 
29409
+msgid "Squall"
 
29410
+msgstr ""
 
29411
+
 
29412
+#. SANDSTORM
 
29413
+#: ../libgweather/weather.c:311
 
29414
+msgid "Sandstorm"
 
29415
+msgstr ""
 
29416
+
 
29417
+#: ../libgweather/weather.c:311
 
29418
+msgid "Sandstorm in the vicinity"
 
29419
+msgstr ""
 
29420
+
 
29421
+#: ../libgweather/weather.c:311
 
29422
+msgid "Heavy sandstorm"
 
29423
+msgstr ""
 
29424
+
 
29425
+#. DUSTSTORM
 
29426
+#: ../libgweather/weather.c:312
 
29427
+msgid "Duststorm"
 
29428
+msgstr ""
 
29429
+
 
29430
+#: ../libgweather/weather.c:312
 
29431
+msgid "Duststorm in the vicinity"
 
29432
+msgstr ""
 
29433
+
 
29434
+#: ../libgweather/weather.c:312
 
29435
+msgid "Heavy duststorm"
 
29436
+msgstr ""
 
29437
+
 
29438
+#. FUNNEL_CLOUD
 
29439
+#: ../libgweather/weather.c:313
 
29440
+msgid "Funnel cloud"
 
29441
+msgstr ""
 
29442
+
 
29443
+#. TORNADO
 
29444
+#: ../libgweather/weather.c:314
 
29445
+msgid "Tornado"
 
29446
+msgstr ""
 
29447
+
 
29448
+#. DUST_WHIRLS
 
29449
+#: ../libgweather/weather.c:315
 
29450
+msgid "Dust whirls"
 
29451
+msgstr ""
 
29452
+
 
29453
+#: ../libgweather/weather.c:315
 
29454
+msgid "Dust whirls in the vicinity"
 
29455
+msgstr ""
 
29456
+
 
29457
+#. TRANSLATOR: this is a format string for strftime
 
29458
+#. *             see `man 3 strftime` for more details
 
29459
+#.
 
29460
+#: ../libgweather/weather.c:710
 
29461
+msgid "%a, %b %d / %H:%M"
 
29462
+msgstr ""
 
29463
+
 
29464
+#: ../libgweather/weather.c:725
 
29465
+msgid "Unknown observation time"
 
29466
+msgstr ""
 
29467
+
 
29468
+#: ../libgweather/weather.c:739 ../libgweather/weather.c:790
 
29469
+#: ../libgweather/weather.c:804 ../libgweather/weather.c:817
 
29470
+#: ../libgweather/weather.c:830 ../libgweather/weather.c:843
 
29471
+#: ../libgweather/weather.c:861 ../libgweather/weather.c:879
 
29472
+#: ../libgweather/weather.c:917 ../libgweather/weather.c:933
 
29473
+#: ../libgweather/weather.c:956 ../libgweather/weather.c:988
 
29474
+#: ../libgweather/weather.c:1004 ../libgweather/weather.c:1024
 
29475
+msgid "Unknown"
 
29476
+msgstr ""
 
29477
+
 
29478
+#. TRANSLATOR: This is the temperature in degrees Fahrenheit (\302\260 is U+00B0 DEGREE SIGN)
 
29479
+#: ../libgweather/weather.c:761
 
29480
+#, c-format
 
29481
+msgid "%.1f °F"
 
29482
+msgstr ""
 
29483
+
 
29484
+#. TRANSLATOR: This is the temperature in degrees Fahrenheit (\302\260 is U+00B0 DEGREE SIGN)
 
29485
+#: ../libgweather/weather.c:764
 
29486
+#, c-format
 
29487
+msgid "%d °F"
 
29488
+msgstr ""
 
29489
+
 
29490
+#. TRANSLATOR: This is the temperature in degrees Celsius (\302\260 is U+00B0 DEGREE SIGN)
 
29491
+#: ../libgweather/weather.c:770
 
29492
+#, c-format
 
29493
+msgid "%.1f °C"
 
29494
+msgstr ""
 
29495
+
 
29496
+#. TRANSLATOR: This is the temperature in degrees Celsius (\302\260 is U+00B0 DEGREE SIGN)
 
29497
+#: ../libgweather/weather.c:773
 
29498
+#, c-format
 
29499
+msgid "%d °C"
 
29500
+msgstr ""
 
29501
+
 
29502
+#. TRANSLATOR: This is the temperature in kelvin
 
29503
+#: ../libgweather/weather.c:779
 
29504
+#, c-format
 
29505
+msgid "%.1f K"
 
29506
+msgstr ""
 
29507
+
 
29508
+#. TRANSLATOR: This is the temperature in kelvin
 
29509
+#: ../libgweather/weather.c:782
 
29510
+#, c-format
 
29511
+msgid "%d K"
 
29512
+msgstr ""
 
29513
+
 
29514
+#. TRANSLATOR: This is the humidity in percent
 
29515
+#: ../libgweather/weather.c:864
 
29516
+#, c-format
 
29517
+msgid "%.f%%"
 
29518
+msgstr ""
 
29519
+
 
29520
+#. TRANSLATOR: This is the wind speed in knots
 
29521
+#: ../libgweather/weather.c:892
 
29522
+#, c-format
 
29523
+msgid "%0.1f knots"
 
29524
+msgstr ""
 
29525
+
 
29526
+#. TRANSLATOR: This is the wind speed in miles per hour
 
29527
+#: ../libgweather/weather.c:896
 
29528
+#, c-format
 
29529
+msgid "%.1f mph"
 
29530
+msgstr ""
 
29531
+
 
29532
+#. TRANSLATOR: This is the wind speed in kilometers per hour
 
29533
+#: ../libgweather/weather.c:900
 
29534
+#, c-format
 
29535
+msgid "%.1f km/h"
 
29536
+msgstr ""
 
29537
+
 
29538
+#. TRANSLATOR: This is the wind speed in meters per second
 
29539
+#: ../libgweather/weather.c:904
 
29540
+#, c-format
 
29541
+msgid "%.1f m/s"
 
29542
+msgstr ""
 
29543
+
 
29544
+#. TRANSLATOR: This is the wind speed as a Beaufort force factor
 
29545
+#. * (commonly used in nautical wind estimation).
 
29546
+#.
 
29547
+#: ../libgweather/weather.c:910
 
29548
+#, c-format
 
29549
+msgid "Beaufort force %.1f"
 
29550
+msgstr ""
 
29551
+
 
29552
+#: ../libgweather/weather.c:935
 
29553
+msgid "Calm"
 
29554
+msgstr ""
 
29555
+
 
29556
+#. TRANSLATOR: This is 'wind direction' / 'wind speed'
 
29557
+#: ../libgweather/weather.c:939
 
29558
+#, c-format
 
29559
+msgid "%s / %s"
 
29560
+msgstr ""
 
29561
+
 
29562
+#. TRANSLATOR: This is pressure in inches of mercury
 
29563
+#: ../libgweather/weather.c:961
 
29564
+#, c-format
 
29565
+msgid "%.2f inHg"
 
29566
+msgstr ""
 
29567
+
 
29568
+#. TRANSLATOR: This is pressure in millimeters of mercury
 
29569
+#: ../libgweather/weather.c:965
 
29570
+#, c-format
 
29571
+msgid "%.1f mmHg"
 
29572
+msgstr ""
 
29573
+
 
29574
+#. TRANSLATOR: This is pressure in kiloPascals
 
29575
+#: ../libgweather/weather.c:969
 
29576
+#, c-format
 
29577
+msgid "%.2f kPa"
 
29578
+msgstr ""
 
29579
+
 
29580
+#. TRANSLATOR: This is pressure in hectoPascals
 
29581
+#: ../libgweather/weather.c:973
 
29582
+#, c-format
 
29583
+msgid "%.2f hPa"
 
29584
+msgstr ""
 
29585
+
 
29586
+#. TRANSLATOR: This is pressure in millibars
 
29587
+#: ../libgweather/weather.c:977
 
29588
+#, c-format
 
29589
+msgid "%.2f mb"
 
29590
+msgstr ""
 
29591
+
 
29592
+#. TRANSLATOR: This is pressure in atmospheres
 
29593
+#: ../libgweather/weather.c:981
 
29594
+#, c-format
 
29595
+msgid "%.3f atm"
 
29596
+msgstr ""
 
29597
+
 
29598
+#. TRANSLATOR: This is the visibility in miles
 
29599
+#: ../libgweather/weather.c:1009
 
29600
+#, c-format
 
29601
+msgid "%.1f miles"
 
29602
+msgstr ""
 
29603
+
 
29604
+#. TRANSLATOR: This is the visibility in kilometers
 
29605
+#: ../libgweather/weather.c:1013
 
29606
+#, c-format
 
29607
+msgid "%.1f km"
 
29608
+msgstr ""
 
29609
+
 
29610
+#. TRANSLATOR: This is the visibility in meters
 
29611
+#: ../libgweather/weather.c:1017
 
29612
+#, c-format
 
29613
+msgid "%.0fm"
 
29614
+msgstr ""
 
29615
+
 
29616
+#: ../libgweather/weather.c:1046 ../libgweather/weather.c:1067
 
29617
+msgid "%H:%M"
 
29618
+msgstr ""
 
29619
+
 
29620
+#: ../libgweather/weather.c:1126
 
29621
+msgid "Retrieval failed"
 
29622
+msgstr ""
 
29623
--- libgweather-2.30.3.orig/libgweather/Makefile.in
 
29624
+++ libgweather-2.30.3/libgweather/Makefile.in
 
29625
@@ -85,7 +85,8 @@ LTLIBRARIES = $(lib_LTLIBRARIES)
 
29626
 am__DEPENDENCIES_1 =
 
29627
 libgweather_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \
 
29628
        $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
 
29629
-       $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
 
29630
+       $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
 
29631
+       $(am__DEPENDENCIES_1)
 
29632
 am__libgweather_la_SOURCES_DIST = weather.c weather.h weather-priv.h \
 
29633
        weather-metar.c weather-iwin.c weather-met.c weather-bom.c \
 
29634
        weather-wx.c weather-sun.c weather-moon.c \
 
29635
@@ -122,7 +123,7 @@ libgweather_la_LINK = $(LIBTOOL) $(AM_V_
 
29636
 PROGRAMS = $(noinst_PROGRAMS)
 
29637
 am_test_locations_OBJECTS = test_locations-test_locations.$(OBJEXT)
 
29638
 test_locations_OBJECTS = $(am_test_locations_OBJECTS)
 
29639
-test_locations_DEPENDENCIES = libgweather.la
 
29640
+test_locations_DEPENDENCIES = $(am__DEPENDENCIES_1) libgweather.la
 
29641
 test_locations_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
 
29642
        $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
 
29643
        $(test_locations_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o \
 
29644
@@ -130,13 +131,14 @@ test_locations_LINK = $(LIBTOOL) $(AM_V_
 
29645
 am_test_metar_OBJECTS = test_metar-test_metar.$(OBJEXT)
 
29646
 test_metar_OBJECTS = $(am_test_metar_OBJECTS)
 
29647
 test_metar_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
 
29648
-       libgweather.la
 
29649
+       $(am__DEPENDENCIES_1) libgweather.la
 
29650
 test_metar_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
 
29651
        $(LIBTOOLFLAGS) --mode=link $(CCLD) $(test_metar_CFLAGS) \
 
29652
        $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
 
29653
 am_test_sun_moon_OBJECTS = test_sun_moon-test_sun_moon.$(OBJEXT)
 
29654
 test_sun_moon_OBJECTS = $(am_test_sun_moon_OBJECTS)
 
29655
-test_sun_moon_DEPENDENCIES = $(am__DEPENDENCIES_1) libgweather.la
 
29656
+test_sun_moon_DEPENDENCIES = $(am__DEPENDENCIES_1) \
 
29657
+       $(am__DEPENDENCIES_1) libgweather.la
 
29658
 test_sun_moon_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
 
29659
        $(LIBTOOLFLAGS) --mode=link $(CCLD) $(test_sun_moon_CFLAGS) \
 
29660
        $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
 
29661
@@ -403,6 +405,7 @@ libgweather_la_CFLAGS = \
 
29662
 libgweather_la_LIBADD = \
 
29663
        -lm             \
 
29664
        $(GTK_LIBS)     \
 
29665
+       $(GLIB_LIBS) \
 
29666
        $(LIBXML_LIBS)  \
 
29667
        $(LIBSOUP_LIBS) \
 
29668
        $(GCONF_LIBS) \
 
29669
@@ -425,6 +428,7 @@ test_metar_CFLAGS = \
 
29670
 test_metar_LDADD = \
 
29671
        $(LIBSOUP_LIBS) \
 
29672
        $(REGEX_LIBS) \
 
29673
+       $(GTK_LIBS) \
 
29674
        libgweather.la
 
29675
 
 
29676
 test_locations_SOURCES = test_locations.c
 
29677
@@ -436,7 +440,7 @@ test_locations_CFLAGS = \
 
29678
        $(GNOME_VFS_APPLETS_CFLAGS)     \
 
29679
        -DG_LOG_DOMAIN=\"GWeather\"
 
29680
 
 
29681
-test_locations_LDADD = libgweather.la
 
29682
+test_locations_LDADD = $(GTK_LIBS) libgweather.la
 
29683
 test_sun_moon_SOURCES = \
 
29684
        test_sun_moon.c
 
29685
 
 
29686
@@ -450,6 +454,7 @@ test_sun_moon_CFLAGS = \
 
29687
 
 
29688
 test_sun_moon_LDADD = \
 
29689
        $(LIBSOUP_LIBS) \
 
29690
+       $(GTK_LIBS) \
 
29691
        libgweather.la
 
29692
 
 
29693
 noinst_HEADERS = weather-priv.h gweather-win32.h